summaryrefslogtreecommitdiff
path: root/src/libskabus/skabus_pub_sendv_async.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libskabus/skabus_pub_sendv_async.c')
-rw-r--r--src/libskabus/skabus_pub_sendv_async.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/libskabus/skabus_pub_sendv_async.c b/src/libskabus/skabus_pub_sendv_async.c
new file mode 100644
index 0000000..54ce94e
--- /dev/null
+++ b/src/libskabus/skabus_pub_sendv_async.c
@@ -0,0 +1,18 @@
+/* ISC license. */
+
+#include <sys/uio.h>
+
+#include <skalibs/unixmessage.h>
+#include <skalibs/skaclient.h>
+
+#include <skabus/pub.h>
+#include "skabus-pub-internal.h"
+
+int skabus_pub_sendv_withfds_async (skabus_pub_t *a, struct iovec const *v, unsigned int vlen, int const *fds, unsigned int nfds, unsigned char const *bits, skabus_pub_send_result_t *result)
+{
+ struct iovec vv[vlen+1] ;
+ unixmessage_v_t m = { .v = vv, .vlen = vlen+1, .fds = (int *)fds, .nfds = nfds } ;
+ vv[0].iov_base = "!" ; vv[0].iov_len = 1 ;
+ for (unsigned int i = 0 ; i < vlen ; i++) vv[1+i] = v[i] ;
+ return skaclient_putmsgv_and_close(&a->connection, &m, bits, &skabus_pub_send_cb, result) ;
+}