blob: 83878bdbeb593d0e9ea3787e20117aefbbf4485a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* ISC license. */
#include <skalibs/kolbak.h>
#include <skalibs/skaclient.h>
#include <skalibs/unixmessage.h>
int skaclient_putmsg_and_close (skaclient *a, unixmessage const *m, unsigned char const *bits, unixmessage_handler_func_ref cb, void *result)
{
if (!kolbak_enqueue(&a->kq, cb, result)) return 0 ;
if (!unixmessage_put_and_close(&a->syncout, m, bits))
{
kolbak_unenqueue(&a->kq) ;
return 0 ;
}
return 1 ;
}
|