From 49cb17940e403431566dc7b5a312624f14eb25d0 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Fri, 23 Jan 2015 23:47:14 +0000 Subject: Added fdholder, beta. Documentation will come next. --- src/fdholder/s6-fdholder-list.c | 52 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 src/fdholder/s6-fdholder-list.c (limited to 'src/fdholder/s6-fdholder-list.c') diff --git a/src/fdholder/s6-fdholder-list.c b/src/fdholder/s6-fdholder-list.c new file mode 100644 index 0000000..2c6f73e --- /dev/null +++ b/src/fdholder/s6-fdholder-list.c @@ -0,0 +1,52 @@ +/* ISC license. */ + +#include +#include +#include +#include +#include + +#define USAGE "s6-fdholder-list [ -t timeout ] [ -T ] socket" +#define dieusage() strerr_dieusage(100, USAGE) + +int main (int argc, char const *const *argv, char const *const *envp) +{ + char const *newargv[9] ; + unsigned int m = 0 ; + unsigned int timeout = 0 ; + int printexpire = 0 ; + char fmtt[UINT_FMT] ; + PROG = "s6-fdholder-list" ; + { + subgetopt_t l = SUBGETOPT_ZERO ; + for (;;) + { + register int opt = subgetopt_r(argc, argv, "d:t:T:", &l) ; + if (opt == -1) break ; + switch (opt) + { + case 'T' : printexpire = 1 ; break ; + case 't' : if (!uint0_scan(l.arg, &timeout)) dieusage() ; break ; + default : dieusage() ; + } + } + argc -= l.ind ; argv += l.ind ; + } + if (!argc) dieusage() ; + + newargv[m++] = S6_BINPREFIX "s6-ipcclient" ; + newargv[m++] = "-l0" ; + newargv[m++] = "--" ; + newargv[m++] = argv[0] ; + newargv[m++] = S6_BINPREFIX "s6-fdholder-listc" ; + if (printexpire) newargv[m++] = "-T" ; + if (timeout) + { + fmtt[uint_fmt(fmtt, timeout)] = 0 ; + newargv[m++] = "-t" ; + newargv[m++] = fmtt ; + } + newargv[m++] = 0 ; + pathexec_run(newargv[0], newargv, envp) ; + strerr_dieexec(111, newargv[0]) ; +} -- cgit v1.3.1