Varie correzioni, completata revisione capitolo sull'I/O su file
[gapil.git] / sources / wwwd.c
index 9524dd4b42be01e3cd2b8e8f1390b2390a3df1f1..0b6dfde9a9be2ca3e0ba4d2dcf04ee149e530083 100644 (file)
  *
  * Usage: wwwd -h give all info
  *
- * $Id$ 
- *
  ****************************************************************/
 /* 
  * Include needed headers
  */
 #define _GNU_SOURCE
-#include <string.h>      /* error strings */
-#include <sys/types.h>   /* predefined types */
-#include <unistd.h>      /* include unix standard library */
-#include <arpa/inet.h>   /* IP addresses conversion utiliites */
-#include <sys/socket.h>  /* socket library */
-#include <stdio.h>      /* include standard I/O library */
-#include <time.h>
+#include <sys/types.h>   /* primitive system data types */
+#include <sys/stat.h>    /* file characteristics constants and functions */
+#include <stdlib.h>      /* C standard library */
+#include <stdio.h>      /* standard I/O library */
+#include <unistd.h>      /* unix standard library */
+#include <arpa/inet.h>   /* IP addresses conversion utilities */
+#include <sys/socket.h>  /* socket constants, types and functions */
+#include <time.h>        /* date and time constants, types and functions */
 #include <syslog.h>      /* syslog system functions */
-#include <signal.h>      /* signal functions */
-#include <errno.h>       /* error code */
-#include <stdlib.h>
+#include <signal.h>      /* signal constants, types and functions */
+#include <errno.h>       /* error definitions and routines */
+#include <string.h>      /* C strings library */
+#include <dirent.h>      /* directory operation constants and functions */
 
 #include "Gapil.h"
 
+/* 
+ * Function and globals definitions
+ */
 #define BACKLOG 10
 #define MAXLINE 256
 int demonize  = 1;  /* daemon use option: default is daemon */
 int debugging = 0;  /* debug info printing option: default is no debug */
-
-/* Subroutines declaration */
 struct code_page {
     char * code; 
     char * name;
@@ -65,12 +66,13 @@ void PrintErr(char * error);
 void print_headers(FILE *file, struct code_page code);
 void print_error(FILE *file, struct code_page page, char * string);
 
-/* Program beginning */
-int main(int argc, char *argv[])
+/*
+ * Main program
+ */int main(int argc, char *argv[])
 {
-/* 
- * Variables definition  
- */
+    /* 
    * Variables definition  
    */
     int list_fd, conn_fd;
     int compat = 0;
     int reroot = 0;