1
mirror of https://code.videolan.org/videolan/vlc synced 2024-08-31 06:46:39 +02:00

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).
This commit is contained in:
Rémi Denis-Courmont 2009-10-05 18:43:26 +03:00
parent 0935fb7a2e
commit 84e1b303e3
8 changed files with 46 additions and 45 deletions

View File

@ -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_Accept, ( vlc_object_t *, int *, mtime_t ) );
#define net_Accept(a, b, c) \
__net_Accept(VLC_OBJECT(a), b, (c == -1) ? -1 : (c ? check_delay(c) : 0))
VLC_EXPORT( int, net_Accept, ( vlc_object_t *, int * ) );
#define net_Accept(a, b) \
net_Accept(VLC_OBJECT(a), b)
#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 ) );

View File

@ -202,7 +202,7 @@ static int Open( vlc_object_t *p_this )
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 );

View File

@ -205,7 +205,7 @@ static int Open( vlc_object_t *p_this )
}
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 );
net_ListenClose( p_fd_listen );

View File

@ -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 =
net_Accept( p_intf, p_intf->p_sys->pi_socket_listen,
INTF_IDLE_SLEEP );
net_Accept( p_intf, p_intf->p_sys->pi_socket_listen );
if( p_intf->p_sys->i_socket == -1 ) continue;
}

View File

@ -121,8 +121,7 @@ static int vlclua_net_accept( lua_State *L )
{
vlc_object_t *p_this = vlclua_get_this( L );
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, i_wait );
int i_fd = net_Accept( p_this, *ppi_fd );
lua_pushinteger( L, i_fd );
return 1;
}

View File

@ -1590,7 +1590,7 @@ static void *rtp_listen_thread( void *data )
for( ;; )
{
int fd = net_Accept( id, id->listen.fd, -1 );
int fd = net_Accept( id, id->listen.fd );
if( fd == -1 )
continue;
int canc = vlc_savecancel( );

View File

@ -249,7 +249,7 @@ msg_Unsubscribe
msleep
mstrtime
mwait
__net_Accept
net_Accept
net_AcceptSingle
__net_Connect
__net_ConnectDgram

View File

@ -272,49 +272,46 @@ int net_AcceptSingle (vlc_object_t *obj, int lfd)
}
/*****************************************************************************
* __net_Accept:
*****************************************************************************
* Accept a connection on a set of listening sockets and return it
*****************************************************************************/
int __net_Accept( vlc_object_t *p_this, int *pi_fd, mtime_t i_wait )
#undef net_Accept
/**
* Accepts an new connection on a set of listening sockets.
* If there are no pending connections, this function will wait.
* @note If the thread needs to handle events other than incoming connections,
* 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);
assert( pi_fd != NULL );
assert (pi_fd != NULL);
unsigned n = 0;
while (pi_fd[n] != -1)
n++;
struct pollfd ufd[n + 1];
/* Initialize file descriptor set */
for (unsigned i = 0; i <= n; i++)
{
ufd[i].fd = (i < n) ? pi_fd[i] : evfd;
ufd[i].events = POLLIN;
}
ufd[n].revents = 0;
for (;;)
{
unsigned n = 0;
while (pi_fd[n] != -1)
n++;
struct pollfd ufd[n + 1];
/* Initialize file descriptor set */
for (unsigned i = 0; i <= n; i++)
while (poll (ufd, n + (evfd != -1), -1) == -1)
{
ufd[i].fd = (i < n) ? pi_fd[i] : evfd;
ufd[i].events = POLLIN;
ufd[i].revents = 0;
}
switch (poll (ufd, n + (evfd != -1), timeout))
{
case -1:
if (net_errno == EINTR)
continue;
if (net_errno != EINTR)
{
msg_Err (p_this, "poll error: %m");
return -1;
case 0:
errno = ETIMEDOUT;
return -1;
}
if (ufd[n].revents)
{
errno = EINTR;
break;
}
}
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 )
pi_fd[n - 1] = sfd;
return fd;
}
if (ufd[n].revents)
{
errno = EINTR;
break;
}
}
return -1;
}