]> git.sesse.net Git - vlc/blobdiff - src/input/input_network.c
- �a compile sous FreeBSD (mais �a ne tourne pas)
[vlc] / src / input / input_network.c
index 9e932ff43ec6279a5877bd25fb9676bbed2138e4..578171181594af0e0ced0ab428153ea2abe75e34 100644 (file)
@@ -91,7 +91,7 @@ int input_NetworkOpen( input_thread_t *p_input )
                     &i_socket_option,
                     sizeof( i_socket_option ) ) == (-1) )
     {
-        intf_ErrMsg("error: can't configure socket (%s)\n", strerror(errno));
+        intf_ErrMsg("error: can't configure socket (SO_REUSEADDR: %s)\n", strerror(errno));
         close( p_input->i_handle );
         return( 1 );
     }
@@ -105,7 +105,7 @@ int input_NetworkOpen( input_thread_t *p_input )
                     &i_socket_option,
                     sizeof( i_socket_option ) ) == (-1) )
     {
-        intf_ErrMsg("error: can't configure socket (%s)\n", strerror(errno));
+        intf_ErrMsg("error: can't configure socket (SO_RCVBUF: %s)\n", strerror(errno));
         close( p_input->i_handle );
         return( 1 );
     }