X-Git-Url: https://gapil.gnulinux.it/gitweb/?p=gapil.git;a=blobdiff_plain;f=sources%2Fwwwd.c;h=0b6dfde9a9be2ca3e0ba4d2dcf04ee149e530083;hp=cb7752680ec47e59237c3e54b8c6fde06895f2fe;hb=fa15a3f1ecd64efd8440e46d398fd9976abc3d25;hpb=3e015f91f0044c2594cdfcbd58f3d86971851b06 diff --git a/sources/wwwd.c b/sources/wwwd.c index cb77526..0b6dfde 100644 --- a/sources/wwwd.c +++ b/sources/wwwd.c @@ -26,33 +26,34 @@ * * Usage: wwwd -h give all info * - * $Id$ - * ****************************************************************/ /* * Include needed headers */ #define _GNU_SOURCE -#include /* error strings */ -#include /* predefined types */ -#include /* include unix standard library */ -#include /* IP addresses conversion utiliites */ -#include /* socket library */ -#include /* include standard I/O library */ -#include +#include /* primitive system data types */ +#include /* file characteristics constants and functions */ +#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 /* date and time constants, types and functions */ #include /* syslog system functions */ -#include /* signal functions */ -#include /* error code */ -#include +#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; @@ -65,15 +66,17 @@ 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; + int reuse = 1; char * rootdir; pid_t pid; struct sockaddr_in cli_add; @@ -85,7 +88,7 @@ int main(int argc, char *argv[]) */ int i; opterr = 0; /* don't want writing to stderr */ - while ( (i = getopt(argc, argv, "hdicr:")) != -1) { + while ( (i = getopt(argc, argv, "hwdicr:")) != -1) { switch (i) { /* * Handling options @@ -104,6 +107,9 @@ int main(int argc, char *argv[]) case 'd': debugging = 1; break; + case 'w': + reuse = 0; + break; case 'r': reroot = 1; rootdir = optarg; @@ -129,7 +135,8 @@ int main(int argc, char *argv[]) SignalRestart(SIGCHLD, HandSigCHLD); /* restarting handler */ } /* create and bind socket */ - if ( (list_fd = sockbind2(argv[optind], "www", 6, SOCK_STREAM)) < 0) { + if ( (list_fd = sockbindopt(argv[optind], "www", 6, + SOCK_STREAM, reuse)) < 0) { return 1; } /* chroot if requested */ @@ -214,7 +221,7 @@ void usage(void) { printf("Elementary echo server\n"); printf("Usage:\n"); - printf(" echod [-h] \n"); + printf(" wwwd [-h] \n"); printf(" -h print this help\n"); printf(" -d write debug info\n"); printf(" -i use interactively\n");