From d7242bda59ec2ec056508b39cb532b5e7318dd13 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Fri, 22 Dec 2017 17:37:09 +0000 Subject: Port ftrigr and s6lock to textclient --- src/libs6/s6lock_update.c | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'src/libs6/s6lock_update.c') diff --git a/src/libs6/s6lock_update.c b/src/libs6/s6lock_update.c index a56c276..9795d9d 100644 --- a/src/libs6/s6lock_update.c +++ b/src/libs6/s6lock_update.c @@ -1,25 +1,26 @@ /* ISC license. */ +#include #include #include #include #include #include #include -#include -#include +#include #include -static int msghandler (unixmessage_t const *m, void *context) +static int msghandler (struct iovec const *v, void *context) { s6lock_t *a = (s6lock_t *)context ; + char const *s = v->iov_base ; char *p ; uint16_t id ; - if (m->len != 3 || m->nfds) return (errno = EPROTO, 0) ; - uint16_unpack_big(m->s, &id) ; + if (v->iov_len != 3) return (errno = EPROTO, 0) ; + uint16_unpack_big(s, &id) ; p = GENSETDYN_P(char, &a->data, id) ; - if (*p == EBUSY) *p = m->s[2] ; - else if (error_isagain(*p)) *p = m->s[2] ? m->s[2] : EBUSY ; + if (*p == EBUSY) *p = s[2] ; + else if (error_isagain(*p)) *p = s[2] ? s[2] : EBUSY ; else return (errno = EPROTO, 0) ; if (!genalloc_append(uint16_t, &a->list, &id)) return 0 ; return 1 ; @@ -28,5 +29,5 @@ static int msghandler (unixmessage_t const *m, void *context) int s6lock_update (s6lock_t *a) { genalloc_setlen(uint16_t, &a->list, 0) ; - return skaclient_update(&a->connection, &msghandler, a) ; + return textclient_update(&a->connection, &msghandler, a) ; } -- cgit v1.3.1