Browse Source

TT#106101 don't require connection address for ICE fragments

Change-Id: I0ee1af3d41ea2f6484daffae0c2c0e1c8a25ef45
pull/1164/head
Richard Fuchs 5 years ago
parent
commit
df11807324
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      daemon/sdp.c

+ 2
- 1
daemon/sdp.c View File

@ -1502,7 +1502,8 @@ int sdp_streams(const GQueue *sessions, GQueue *streams, struct sdp_ng_flags *fl
sp->index = ++num; sp->index = ++num;
errstr = "No address info found for stream"; errstr = "No address info found for stream";
if (fill_endpoint(&sp->rtp_endpoint, media, flags, NULL, media->port_num))
if (!flags->fragment
&& fill_endpoint(&sp->rtp_endpoint, media, flags, NULL, media->port_num))
goto error; goto error;
sp->consecutive_ports = media->port_count; sp->consecutive_ports = media->port_count;


Loading…
Cancel
Save