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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/* ISC license. */
#include <errno.h>
#include <skalibs/error.h>
#include <skalibs/kolbak.h>
#include <skalibs/skaclient.h>
#include <skalibs/unixmessage.h>
#include <skalibs/webipc.h>
#include "skaclient-internal.h"
int skaclient_start_async (
skaclient_t *a,
char *bufss,
unsigned int bufsn,
char *auxbufss,
unsigned int auxbufsn,
char *bufas,
unsigned int bufan,
char *auxbufas,
unsigned int auxbufan,
kolbak_closure_t *q,
unsigned int qlen,
char const *path,
char const *before,
unsigned int beforelen,
char const *after,
unsigned int afterlen,
skaclient_cbdata_t *blah)
{
int fd = ipc_stream_nbcoe() ;
if (fd < 0) return 0 ;
if ((!ipc_connect(fd, path) && !error_isalready(errno))
|| !skaclient_init(a, fd, bufss, bufsn, auxbufss, auxbufsn, bufas, bufan, auxbufas, auxbufan, q, qlen, before, beforelen))
{
register int e = errno ;
fd_close(fd) ;
errno = e ;
return 0 ;
}
a->pid = 0 ;
a->options = 0 ;
if (!kolbak_enqueue(&a->kq, (unixmessage_handler_func_t_ref)&skaclient_start_cb, blah))
{
skaclient_end(a) ;
return 0 ;
}
blah->asyncin = &a->asyncin ;
blah->asyncout = &a->asyncout ;
blah->after = after ;
blah->afterlen = afterlen ;
return 1 ;
}
|