From: José Bollo Date: Mon, 25 Jan 2016 09:38:04 +0000 (+0100) Subject: http-svc: refactor of httpdLoop X-Git-Tag: blowfish_2.0.1~294 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=9b0f0c14da41424fc0ab50cc9a71499dcb307bd0;p=src%2Fapp-framework-binder.git http-svc: refactor of httpdLoop Reading stdin drives to problems when afb-daemon is launched with its input either closed or connected to /dev/null. Conversely, launching afb-daemon with the option --daemon is not always possible because it really daemonizes itself what forbids to control it or its group directly. Change-Id: I182741226762110809e50d68154f5d29d133303b Signed-off-by: José Bollo --- diff --git a/src/http-svc.c b/src/http-svc.c index 1eeb2878..3b9db7ad 100644 --- a/src/http-svc.c +++ b/src/http-svc.c @@ -298,20 +298,11 @@ PUBLIC AFB_error httpdStart(AFB_session *session) { // infinite loop PUBLIC AFB_error httpdLoop(AFB_session *session) { - static int count = 0; - + int count = 0; if (verbose) fprintf(stderr, "AFB:notice entering httpd waiting loop\n"); - if (session->foreground) { - - while (TRUE) { - fprintf(stderr, "AFB:notice Use Ctrl-C to quit\n"); - (void) getc(stdin); - } - } else { - while (TRUE) { - sleep(3600); - if (verbose) fprintf(stderr, "AFB:notice httpd alive [%d]\n", count++); - } + while (TRUE) { + sleep(3600); + if (verbose) fprintf(stderr, "AFB:notice httpd alive [%d]\n", count++); } // should never return from here diff --git a/src/main.c b/src/main.c index 302d3076..e14dc3a1 100644 --- a/src/main.c +++ b/src/main.c @@ -442,7 +442,7 @@ int main(int argc, char *argv[]) { // open syslog if ever needed openlog("AGB-log", 0, LOG_DAEMON); - // -------------- Try to kill any previsou process if asked --------------------- + // -------------- Try to kill any previous process if asked --------------------- if (session->killPrevious) { pid = readPidFile (session->config); // enforce commandline option switch (pid) {