Fix Error Message
[src/app-framework-binder.git] / src / http-svc.c
index b3b9a1f..839fc2f 100644 (file)
@@ -249,7 +249,7 @@ STATIC int newRequest(void *cls,
     }
 
      // Nothing respond to this request Files, API, Angular Base
-    const char *errorstr = "<html><body>Alsa-Json-Gateway Unknown or Not readable file</body></html>";
+    const char *errorstr = "<html><body>AFB-Daemon File Not Find file</body></html>";
     response = MHD_create_response_from_buffer(strlen(errorstr), (void*)errorstr, MHD_RESPMEM_PERSISTENT);
     ret = MHD_queue_response(connection, MHD_HTTP_INTERNAL_SERVER_ERROR, response);
     return (MHD_YES);
@@ -271,8 +271,8 @@ PUBLIC AFB_error httpdStart(AFB_session *session) {
     // Initialise Client Session Hash Table
     ctxStoreInit (CTX_NBCLIENTS);
      
-    // TBD open libmagic cache [fail to pass EFENCE check]
-    // initLibMagic (session);
+    //TBD open libmagic cache [fail to pass EFENCE check (allocating 0 bytes)]
+    //initLibMagic (session);
     
     
     if (verbose) {
@@ -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