X-Git-Url: http://www.dolda2000.com/gitweb/?a=blobdiff_plain;f=src%2Fhtparser.c;h=c8064f23fc0ae9d649052815e817aa3beeb02d46;hb=c703cd40b144284a46eb4a59294b4b1757b8faa6;hp=483554924a63a8ccdf2453bf9987a4f6a301a0e6;hpb=6ca53b2e5e3b76345fd709a3e9d32aee69889054;p=ashd.git diff --git a/src/htparser.c b/src/htparser.c index 4835549..c8064f2 100644 --- a/src/htparser.c +++ b/src/htparser.c @@ -22,6 +22,7 @@ #include #include #include +#include #include #ifdef HAVE_CONFIG_H @@ -37,6 +38,7 @@ #include "htparser.h" static int plex; +static char *pidfile = NULL; static void trimx(struct hthead *req) { @@ -351,7 +353,7 @@ static void plexwatch(struct muth *muth, va_list args) static void usage(FILE *out) { - fprintf(out, "usage: htparser [-hSf] [-u USER] [-r ROOT] PORTSPEC... -- ROOT [ARGS...]\n"); + fprintf(out, "usage: htparser [-hSf] [-u USER] [-r ROOT] [-p PIDFILE] PORTSPEC... -- ROOT [ARGS...]\n"); fprintf(out, "\twhere PORTSPEC is HANDLER[:PAR[=VAL][(,PAR[=VAL])...]] (try HANDLER:help)\n"); fprintf(out, "\tavailable handlers are `plain' and `ssl'.\n"); } @@ -407,12 +409,13 @@ int main(int argc, char **argv) int i, s1; int daemonize, logsys; char *root; + FILE *pidout; struct passwd *pwent; daemonize = logsys = 0; root = NULL; pwent = NULL; - while((c = getopt(argc, argv, "+hSfu:r:")) >= 0) { + while((c = getopt(argc, argv, "+hSfu:r:p:")) >= 0) { switch(c) { case 'h': usage(stdout); @@ -432,6 +435,9 @@ int main(int argc, char **argv) case 'r': root = optarg; break; + case 'p': + pidfile = optarg; + break; default: usage(stderr); exit(1); @@ -453,6 +459,13 @@ int main(int argc, char **argv) return(1); } mustart(plexwatch, plex); + pidout = NULL; + if(pidfile != NULL) { + if((pidout = fopen(pidfile, "w")) == NULL) { + flog(LOG_ERR, "could not open %s for writing: %s", pidfile, strerror(errno)); + return(1); + } + } if(logsys) opensyslog(); if(root) { @@ -471,9 +484,14 @@ int main(int argc, char **argv) exit(1); } } + signal(SIGPIPE, SIG_IGN); if(daemonize) { daemon(0, 0); } + if(pidout != NULL) { + fprintf(pidout, "%i\n", getpid()); + fclose(pidout); + } ioloop(); return(0); }