1.25.7. httpd

[<<<] [>>>]

This is the main entry point of the module. This function should be called by the main function passing the command line arguments and the three callback functions:

The function httpd never returns.

int httpd(int argc,
          char *argv[],
          int (*AppInit)(int argc,char *argv[],pHttpdThread pHT,void **AppData),
          int (*AppStart)(void **AppData),
          void (*HttpProc)(pHttpdThread pHT,pThreadData ThisThread),
          int (*FtpProc)(pHttpdThread pHT,pThreadData ThisThread, char *pszCommand)
);

[<<<] [>>>]