#include "common.h"
#include <errno.h>
#include <limits.h>
#include <stdlib.h>
#include <signal.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include "logger.h"
#include "module_preinit.h"
#include "buffer.h"
#include "conftable.h"
#include "http.h"
#include "mime.h"
#include "reqhandler_file.h"
#include "server.h"
#include "signal_handler.h"
#include "xmalloc.h"
Include dependency graph for pdeppd_main.c:
Go to the source code of this file.
Functions | |
int | initServer (void) |
initialize server. More... | |
void | printVersionText () |
Prints out version information. | |
void | printCopyright () |
Prints out the Copyright including version information. | |
void | printHelpText (int briefHelp, char *argv_0) |
Prints an info screen about all possible command line parameters. More... | |
int | main (int argc, char *argv[]) |
pdeppd main() function. |
Definition in file pdeppd_main.c.
|
initialize server.
initializes logger and server core according to the command line arguments and config file settings
Definition at line 317 of file pdeppd_main.c. Referenced by main().
|
|
Prints an info screen about all possible command line parameters.
If [briefHelp] == true a short info is printed, else a long description is printed. Definition at line 86 of file pdeppd_main.c. Referenced by main().
|