blob: e08b32bb826af018d8201b140061c099728ef8ed (
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/error.h>
#include <skalibs/iopause.h>
#include <skalibs/webipc.h>
int ipc_timed_connect (int s, char const *path, tain_t const *deadline, tain_t *stamp)
{
if (!ipc_connect(s, path))
{
iopause_fd x = { s, IOPAUSE_WRITE, 0 } ;
if (!error_isagain(errno) && !error_isalready(errno)) return 0 ;
for (;;)
{
int r = iopause_stamp(&x, 1, deadline, stamp) ;
if (r < 0) return 0 ;
else if (!r) return (errno = ETIMEDOUT, 0) ;
else if (x.revents & IOPAUSE_EXCEPT) return 0 ;
else if (x.revents & IOPAUSE_WRITE) break ;
}
if (!ipc_connected(s)) return 0 ;
}
return 1 ;
}
|