X-Git-Url: https://gapil.gnulinux.it/gitweb/?p=gapil.git;a=blobdiff_plain;f=sources%2Fwwwd.c;h=0b6dfde9a9be2ca3e0ba4d2dcf04ee149e530083;hp=db81af4daaecace370edd6d11ff1af25a8609c8c;hb=fa15a3f1ecd64efd8440e46d398fd9976abc3d25;hpb=31f55ec58bee8b2c4993633849b7da4e30cab222 diff --git a/sources/wwwd.c b/sources/wwwd.c index db81af4..0b6dfde 100644 --- a/sources/wwwd.c +++ b/sources/wwwd.c @@ -33,25 +33,27 @@ #define _GNU_SOURCE #include /* primitive system data types */ #include /* file characteristics constants and functions */ -#include /* unix standard library */ #include /* C standard library */ +#include /* standard I/O library */ +#include /* unix standard library */ #include /* IP addresses conversion utilities */ #include /* socket constants, types and functions */ -#include /* standard I/O library */ #include /* date and time constants, types and functions */ #include /* syslog system functions */ #include /* signal constants, types and functions */ #include /* error definitions and routines */ #include /* C strings library */ +#include /* 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; @@ -64,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;