aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs6/s6_fdholder_retrieve_cb.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2015-01-19 16:11:24 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2015-01-19 16:11:24 +0000
commit701540827e27a4f07ac725db3ce361d3be0c106f (patch)
tree98c4b2fb8ba8f69ef791feebdcd61cd5bca34140 /src/libs6/s6_fdholder_retrieve_cb.c
parent83853a80eb18238796154164f9ea776b0c167ab7 (diff)
downloads6-701540827e27a4f07ac725db3ce361d3be0c106f.tar.gz
- added the s6_fdholder library to libs6. (Nothing useful yet.)
- fixed execline invocation in s6-log with slashpackage - integrated s6_svc_main.c's functionality into s6-svscanctl and deleted it - integrated Olivier Brunel's suggestions for wstat report in supervise/status - minor fixes to s6-supervise's status reports - separated sigaction calls in ftrigw_notifyb, this spares a few syscalls in s6-supervise - updated doc to reflect the changes - version bumped to 2.1.0.0 because API breakage (./finish, s6-svstat)
Diffstat (limited to 'src/libs6/s6_fdholder_retrieve_cb.c')
-rw-r--r--src/libs6/s6_fdholder_retrieve_cb.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/libs6/s6_fdholder_retrieve_cb.c b/src/libs6/s6_fdholder_retrieve_cb.c
new file mode 100644
index 0000000..9197b22
--- /dev/null
+++ b/src/libs6/s6_fdholder_retrieve_cb.c
@@ -0,0 +1,26 @@
+ /* ISC license. */
+
+#include <errno.h>
+#include <skalibs/error.h>
+#include <skalibs/unixmessage.h>
+#include <s6/s6-fdholder.h>
+
+int s6_fdholder_retrieve_cb (unixmessage_t const *m, void *p)
+{
+ register s6_fdholder_retrieve_result_t *res = p ;
+ if (m->len != 1) goto err ;
+ if (m->s[0])
+ {
+ if (m->nfds) goto err ;
+ res->err = m->s[0] ;
+ return 1 ;
+ }
+ if (m->nfds != 1) goto err ;
+ res->fd = m->fds[0] ;
+ res->err = 0 ;
+ return 1 ;
+
+ err:
+ unixmessage_drop(m) ;
+ return (errno = EPROTO, 0) ;
+}