Browse Source

TT#14008 skip stray warning message for trickle ICE updates

Change-Id: I2c9c9745df1ac6dbdea5873f8f54709e69dc1f82
pull/1373/head
Richard Fuchs 4 years ago
parent
commit
6443cfcb8e
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      daemon/call.c

+ 4
- 3
daemon/call.c View File

@ -1034,9 +1034,10 @@ static void __fill_stream(struct packet_stream *ps, const struct endpoint *epp,
return;
if (ps->selected_sfd && ep.address.family != ps->selected_sfd->socket.family) {
ilog(LOG_WARN, "Ignoring updated remote endpoint %s%s%s as the local "
"socket is %s", FMT_M(endpoint_print_buf(&ep)),
ps->selected_sfd->socket.family->name);
if (ep.address.family && !is_trickle_ice_address(&ep))
ilog(LOG_WARN, "Ignoring updated remote endpoint %s%s%s as the local "
"socket is %s", FMT_M(endpoint_print_buf(&ep)),
ps->selected_sfd->socket.family->name);
return;
}


Loading…
Cancel
Save