Commit d18b32c0 authored by Marian Durkovic's avatar Marian Durkovic

Compile fix

parent 17318964
......@@ -187,9 +187,12 @@ static int OpenUDP( vlc_object_t * p_this )
}
/* We may want to reuse an already used socket */
setsockopt( i_handle, SOL_SOCKET, SO_REUSEADDR, &(int){ 1 }, sizeof( int ) );
i_opt = 1;
setsockopt( i_handle, SOL_SOCKET, SO_REUSEADDR, (void *) &i_opt,
sizeof( i_opt ) );
#ifdef SO_REUSEPORT
setsockopt( i_handle, SOL_SOCKET, SO_REUSEPORT, &(int){ 1 }, sizeof( int ) );
setsockopt( i_handle, SOL_SOCKET, SO_REUSEPORT, (void *) &i_opt,
sizeof( i_opt ) );
#endif
/* Increase the receive buffer size to 1/2MB (8Mb/s during 1/2s) to avoid
......
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