Commit 1c60a0f6 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Improve debug messages (tracking down some DCCP issues)

parent 57237c5f
...@@ -162,6 +162,7 @@ int __net_Connect( vlc_object_t *p_this, const char *psz_host, int i_port, ...@@ -162,6 +162,7 @@ int __net_Connect( vlc_object_t *p_this, const char *psz_host, int i_port,
msg_Err( p_this, "connection failed: %m" ); msg_Err( p_this, "connection failed: %m" );
goto next_ai; goto next_ai;
} }
msg_Dbg( p_this, "connection: %m" );
var_Create( p_this, "ipv4-timeout", var_Create( p_this, "ipv4-timeout",
VLC_VAR_INTEGER | VLC_VAR_DOINHERIT ); VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
...@@ -173,7 +174,6 @@ int __net_Connect( vlc_object_t *p_this, const char *psz_host, int i_port, ...@@ -173,7 +174,6 @@ int __net_Connect( vlc_object_t *p_this, const char *psz_host, int i_port,
} }
d = div( timeout.i_int, 100 ); d = div( timeout.i_int, 100 );
msg_Dbg( p_this, "connection in progress" );
for (;;) for (;;)
{ {
struct pollfd ufd = { .fd = fd, .events = POLLOUT }; struct pollfd ufd = { .fd = fd, .events = POLLOUT };
...@@ -222,6 +222,7 @@ int __net_Connect( vlc_object_t *p_this, const char *psz_host, int i_port, ...@@ -222,6 +222,7 @@ int __net_Connect( vlc_object_t *p_this, const char *psz_host, int i_port,
#endif #endif
} }
msg_Dbg( p_this, "connection succeeded (socket = %d)", fd );
i_handle = fd; /* success! */ i_handle = fd; /* success! */
break; break;
......
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