Altre correzioni, con esempi sul server fortunes e relativa "demonizzazzione"
[gapil.git] / sources / MQFortuneServer.c
index 4d4ec74944d1965a6f05106f87e1c9d93e8ee1e3..0f56bdef7a7880fc92d7bc6621cb169ab2f59697 100644 (file)
@@ -26,7 +26,7 @@
  *
  * Usage: fortuned -h give all info
  *
- * $Id: MQFortuneServer.c,v 1.2 2002/10/20 22:40:34 piccardi Exp $
+ * $Id: MQFortuneServer.c,v 1.4 2003/01/12 16:10:07 piccardi Exp $
  *
  ****************************************************************/
 /* 
@@ -44,7 +44,7 @@
 #include <sys/msg.h>
 
 #include "macros.h"
-#include "wrappers.h"
+#include "Gapil.h"
 
 /* Maximum message size */
 #define MSGMAX 8192
@@ -60,7 +60,7 @@ int main(int argc, char *argv[])
 /* Variables definition */
     int i, n = 0;
     char **fortune;                       /* array of fortune message string */
-    char *fortunefilename;                              /* fortune file name */
+    char *fortunefilename = "/usr/share/games/fortunes/linux";  /* file name */
     struct msgbuf_read {      /* message struct to read request from clients */
        long mtype;                               /* message type, must be 1 */
        long pid;             /* message data, must be the pid of the client */
@@ -123,6 +123,7 @@ int main(int argc, char *argv[])
     }
 
     /* Main body: loop over requests */
+    daemon(0, 0);
     while (1) {
        msgrcv(msgid, &msg_read, sizeof(int), 1, MSG_NOERROR);
        debug("received request from %d\n", msg_read.pid);