Commit b1f09108 authored by Marian Durkovic's avatar Marian Durkovic

SAP announcer needs destination address in URI

Hosts should never send packets with TTL=0
parent 6ab18a50
......@@ -114,7 +114,7 @@ vlc_module_begin();
add_integer( SOUT_CFG_PREFIX "port-video", 1232, NULL, PORT_VIDEO_TEXT,
PORT_VIDEO_LONGTEXT, VLC_TRUE );
add_integer( SOUT_CFG_PREFIX "ttl", 0, NULL, TTL_TEXT,
add_integer( SOUT_CFG_PREFIX "ttl", 1, NULL, TTL_TEXT,
TTL_LONGTEXT, VLC_TRUE );
set_callbacks( Open, Close );
......@@ -1314,7 +1314,7 @@ static int SapSetup( sout_stream_t *p_stream )
if( ( p_sys->i_es > 0 || p_sys->p_mux ) && p_sys->psz_sdp && *p_sys->psz_sdp )
{
p_sys->p_session = sout_AnnounceRegisterSDP( p_sout, p_sys->psz_sdp,
p_sys->psz_session_url,
p_sys->psz_destination,
p_method );
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment