Browse Source

RTP forwarding fix for trickle ICE

fixes #105
pull/110/head
Richard Fuchs 11 years ago
parent
commit
b205691e9c
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      daemon/call.c

+ 3
- 1
daemon/call.c View File

@ -861,8 +861,10 @@ forward:
if (sink)
mutex_lock(&sink->out_lock);
if (!sink || is_addr_unspecified(&sink->advertised_endpoint.ip46)
if (!sink
|| !sink->advertised_endpoint.port
|| (is_addr_unspecified(&sink->advertised_endpoint.ip46)
&& !is_trickle_ice_address(&sink->advertised_endpoint))
|| stun_ret || handler_ret < 0)
goto drop;


Loading…
Cancel
Save