Commit 0e87fb0f authored by Jérome Decoodt's avatar Jérome Decoodt

Takes default TTL (instead of 42...)

parent d8493985
...@@ -276,7 +276,7 @@ static int CheckAndSend( vlc_object_t *p_this, uint8_t* p_data, int i_offset ) ...@@ -276,7 +276,7 @@ static int CheckAndSend( vlc_object_t *p_this, uint8_t* p_data, int i_offset )
p_data[i_offset++] = (md5.p_digest[i]>>24)&0xFF; p_data[i_offset++] = (md5.p_digest[i]>>24)&0xFF;
} }
i_handle = net_ConnectUDP( p_this, psz_server, i_port, 42 /*TTL*/ ); i_handle = net_ConnectUDP( p_this, psz_server, i_port, 0 );
if( i_handle == -1 ) if( i_handle == -1 )
{ {
msg_Err( p_this, "failed to open a connection (udp)" ); msg_Err( p_this, "failed to open a connection (udp)" );
......
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