blob: f385b6b673a61e2c525d97e8b30322069f4e7ee9 (
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
26
27
|
/* ISC license. */
#include <errno.h>
#include <string.h>
#include <skalibs/unixmessage.h>
#include <skalibs/skaclient.h>
#include <skalibs/posixishard.h>
#include "skaclient-internal.h"
int skaclient_start_cb (unixmessage_t const *m, skaclient_cbdata_t *blah)
{
if (m->len != blah->afterlen
|| memcmp(m->s, blah->after, m->len)
|| m->nfds != 1)
{
unixmessage_drop(m) ;
return (errno = EPROTO, 0) ;
}
blah->a->asyncin.fd = m->fds[0] ;
blah->a->asyncout.fd = m->fds[0] ;
if (!(blah->a->options & SKACLIENT_OPTION_ASYNC_ACCEPT_FDS))
unixmessage_receiver_refuse_fds(&blah->a->asyncin) ;
if (!(blah->a->options & SKACLIENT_OPTION_SYNC_ACCEPT_FDS))
unixmessage_receiver_refuse_fds(&blah->a->syncin) ;
return 1 ;
}
|