blob: aca0bbfd3c3aa66b0abcfb903bd4145c6f0ef301 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* ISC license. */
#include <errno.h>
#include <skalibs/allreadwrite.h>
#include <skalibs/tai.h>
#include <skalibs/iopause.h>
#include <skalibs/socket.h>
int socket_waitconn (int s, tain_t const *deadline, tain_t *stamp)
{
iopause_fd x = { s, IOPAUSE_WRITE, 0 } ;
for (;;)
{
int r = iopause_stamp(&x, 1, deadline, stamp) ;
if (r < 0) return 0 ;
if (!r) return (errno = ETIMEDOUT, 0) ;
if (x.revents & IOPAUSE_WRITE) break ;
if (x.revents & IOPAUSE_EXCEPT)
{
fd_write(s, "", 1) ; /* sets errno */
return 0 ;
}
}
return socket_connected(s) ;
}
|