From 3534b428629be185e096be99e3bd5fdfe32d5544 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Thu, 18 Sep 2014 18:55:44 +0000 Subject: initial commit with rc for skalibs-2.0.0.0 --- src/libunixonacid/skaclient_sendmsgv.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/libunixonacid/skaclient_sendmsgv.c (limited to 'src/libunixonacid/skaclient_sendmsgv.c') diff --git a/src/libunixonacid/skaclient_sendmsgv.c b/src/libunixonacid/skaclient_sendmsgv.c new file mode 100644 index 0000000..ac4bcdb --- /dev/null +++ b/src/libunixonacid/skaclient_sendmsgv.c @@ -0,0 +1,15 @@ +/* ISC license. */ + +#include +#include +#include +#include + +int skaclient_sendmsgv_and_close (skaclient_t *a, unixmessage_v_t const *m, unsigned char const *bits, unixmessage_handler_func_t *cb, void *result, tain_t const *deadline, tain_t *stamp) +{ + register int r ; + if (!skaclient_putmsgv_and_close(a, m, bits, cb, result)) return 0 ; + if (!skaclient_timed_flush(a, deadline, stamp)) return 0 ; + r = skaclient_timed_supdate(a, deadline, stamp) ; + return r < 0 ? 0 : !r ? (errno = EPIPE, 0) : 1 ; +} -- cgit v1.2.3