Commit 84e1b303 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

net_Accept: remove timeout parameter

Only the RC interface still used it, and it was not really needed
(net_Accept() returns -1 when the object is killed).
parent 0935fb7a
...@@ -101,9 +101,9 @@ static inline int __net_ConnectTCP (vlc_object_t *obj, const char *host, int por ...@@ -101,9 +101,9 @@ static inline int __net_ConnectTCP (vlc_object_t *obj, const char *host, int por
VLC_EXPORT( int, net_AcceptSingle, (vlc_object_t *obj, int lfd) ); VLC_EXPORT( int, net_AcceptSingle, (vlc_object_t *obj, int lfd) );
VLC_EXPORT( int, __net_Accept, ( vlc_object_t *, int *, mtime_t ) ); VLC_EXPORT( int, net_Accept, ( vlc_object_t *, int * ) );
#define net_Accept(a, b, c) \ #define net_Accept(a, b) \
__net_Accept(VLC_OBJECT(a), b, (c == -1) ? -1 : (c ? check_delay(c) : 0)) net_Accept(VLC_OBJECT(a), b)
#define net_ConnectDgram(a, b, c, d, e ) __net_ConnectDgram(VLC_OBJECT(a), b, c, d, e) #define net_ConnectDgram(a, b, c, d, e ) __net_ConnectDgram(VLC_OBJECT(a), b, c, d, e)
VLC_EXPORT( int, __net_ConnectDgram, ( vlc_object_t *p_this, const char *psz_host, int i_port, int hlim, int proto ) ); VLC_EXPORT( int, __net_ConnectDgram, ( vlc_object_t *p_this, const char *psz_host, int i_port, int hlim, int proto ) );
......
...@@ -202,7 +202,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -202,7 +202,7 @@ static int Open( vlc_object_t *p_this )
goto error2; goto error2;
} }
p_sys->p_thread->fd = net_Accept( p_access, p_fd_listen, -1 ); p_sys->p_thread->fd = net_Accept( p_access, p_fd_listen );
net_ListenClose( p_fd_listen ); net_ListenClose( p_fd_listen );
......
...@@ -205,7 +205,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -205,7 +205,7 @@ static int Open( vlc_object_t *p_this )
} }
do do
p_sys->p_thread->fd = net_Accept( p_access, p_fd_listen, -1 ); p_sys->p_thread->fd = net_Accept( p_access, p_fd_listen );
while( p_sys->p_thread->fd == -1 ); while( p_sys->p_thread->fd == -1 );
net_ListenClose( p_fd_listen ); net_ListenClose( p_fd_listen );
......
...@@ -484,8 +484,7 @@ static void Run( intf_thread_t *p_intf ) ...@@ -484,8 +484,7 @@ static void Run( intf_thread_t *p_intf )
p_intf->p_sys->i_socket == -1 ) p_intf->p_sys->i_socket == -1 )
{ {
p_intf->p_sys->i_socket = p_intf->p_sys->i_socket =
net_Accept( p_intf, p_intf->p_sys->pi_socket_listen, net_Accept( p_intf, p_intf->p_sys->pi_socket_listen );
INTF_IDLE_SLEEP );
if( p_intf->p_sys->i_socket == -1 ) continue; if( p_intf->p_sys->i_socket == -1 ) continue;
} }
......
...@@ -121,8 +121,7 @@ static int vlclua_net_accept( lua_State *L ) ...@@ -121,8 +121,7 @@ static int vlclua_net_accept( lua_State *L )
{ {
vlc_object_t *p_this = vlclua_get_this( L ); vlc_object_t *p_this = vlclua_get_this( L );
int **ppi_fd = (int**)luaL_checkudata( L, 1, "net_listen" ); int **ppi_fd = (int**)luaL_checkudata( L, 1, "net_listen" );
mtime_t i_wait = luaL_optint( L, 2, -1 ); /* default to block */ int i_fd = net_Accept( p_this, *ppi_fd );
int i_fd = net_Accept( p_this, *ppi_fd, i_wait );
lua_pushinteger( L, i_fd ); lua_pushinteger( L, i_fd );
return 1; return 1;
} }
......
...@@ -1590,7 +1590,7 @@ static void *rtp_listen_thread( void *data ) ...@@ -1590,7 +1590,7 @@ static void *rtp_listen_thread( void *data )
for( ;; ) for( ;; )
{ {
int fd = net_Accept( id, id->listen.fd, -1 ); int fd = net_Accept( id, id->listen.fd );
if( fd == -1 ) if( fd == -1 )
continue; continue;
int canc = vlc_savecancel( ); int canc = vlc_savecancel( );
......
...@@ -249,7 +249,7 @@ msg_Unsubscribe ...@@ -249,7 +249,7 @@ msg_Unsubscribe
msleep msleep
mstrtime mstrtime
mwait mwait
__net_Accept net_Accept
net_AcceptSingle net_AcceptSingle
__net_Connect __net_Connect
__net_ConnectDgram __net_ConnectDgram
......
...@@ -272,20 +272,24 @@ int net_AcceptSingle (vlc_object_t *obj, int lfd) ...@@ -272,20 +272,24 @@ int net_AcceptSingle (vlc_object_t *obj, int lfd)
} }
/***************************************************************************** #undef net_Accept
* __net_Accept: /**
***************************************************************************** * Accepts an new connection on a set of listening sockets.
* Accept a connection on a set of listening sockets and return it * If there are no pending connections, this function will wait.
*****************************************************************************/ * @note If the thread needs to handle events other than incoming connections,
int __net_Accept( vlc_object_t *p_this, int *pi_fd, mtime_t i_wait ) * you need to use poll() and net_AcceptSingle() instead.
*
* @param p_this VLC object for logging and object kill signal
* @param pi_fd listening socket set
* @return -1 on error (may be transient error due to network issues),
* a new socket descriptor on success.
*/
int net_Accept (vlc_object_t *p_this, int *pi_fd)
{ {
int timeout = (i_wait < 0) ? -1 : i_wait / 1000;
int evfd = vlc_object_waitpipe (p_this); int evfd = vlc_object_waitpipe (p_this);
assert( pi_fd != NULL ); assert (pi_fd != NULL);
for (;;)
{
unsigned n = 0; unsigned n = 0;
while (pi_fd[n] != -1) while (pi_fd[n] != -1)
n++; n++;
...@@ -296,25 +300,18 @@ int __net_Accept( vlc_object_t *p_this, int *pi_fd, mtime_t i_wait ) ...@@ -296,25 +300,18 @@ int __net_Accept( vlc_object_t *p_this, int *pi_fd, mtime_t i_wait )
{ {
ufd[i].fd = (i < n) ? pi_fd[i] : evfd; ufd[i].fd = (i < n) ? pi_fd[i] : evfd;
ufd[i].events = POLLIN; ufd[i].events = POLLIN;
ufd[i].revents = 0;
} }
ufd[n].revents = 0;
switch (poll (ufd, n + (evfd != -1), timeout)) for (;;)
{
while (poll (ufd, n + (evfd != -1), -1) == -1)
{
if (net_errno != EINTR)
{ {
case -1:
if (net_errno == EINTR)
continue;
msg_Err (p_this, "poll error: %m"); msg_Err (p_this, "poll error: %m");
return -1; return -1;
case 0:
errno = ETIMEDOUT;
return -1;
} }
if (ufd[n].revents)
{
errno = EINTR;
break;
} }
for (unsigned i = 0; i < n; i++) for (unsigned i = 0; i < n; i++)
...@@ -335,6 +332,12 @@ int __net_Accept( vlc_object_t *p_this, int *pi_fd, mtime_t i_wait ) ...@@ -335,6 +332,12 @@ int __net_Accept( vlc_object_t *p_this, int *pi_fd, mtime_t i_wait )
pi_fd[n - 1] = sfd; pi_fd[n - 1] = sfd;
return fd; return fd;
} }
if (ufd[n].revents)
{
errno = EINTR;
break;
}
} }
return -1; return -1;
} }
......
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