diff options
Diffstat (limited to 'src/libskabus/skabus_pub_sendpm.c')
-rw-r--r-- | src/libskabus/skabus_pub_sendpm.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/libskabus/skabus_pub_sendpm.c b/src/libskabus/skabus_pub_sendpm.c new file mode 100644 index 0000000..073633a --- /dev/null +++ b/src/libskabus/skabus_pub_sendpm.c @@ -0,0 +1,15 @@ +/* ISC license. */ + +#include <errno.h> + +#include <skalibs/skaclient.h> + +#include <skabus/pub.h> + +uint64_t skabus_pub_sendpm_withfds (skabus_pub_t *a, char const *id, char const *s, size_t len, int const *fds, unsigned int nfds, unsigned char const *bits, tain_t const *deadline, tain_t *stamp) +{ + skabus_pub_send_result_t r ; + if (!skabus_pub_sendpm_withfds_async(a, id, s, len, fds, nfds, bits, &r)) return 0 ; + if (!skaclient_syncify(&a->connection, deadline, stamp)) return 0 ; + return r.err ? (errno = r.err, 0) : r.u ; +} |