|
|||
|
|||
|
#include "inspircd.h"#include <algorithm>#include "modules.h"#include "httpd.h"Include dependency graph for m_httpd.cpp:

Go to the source code of this file.
Classes | |
| class | HttpServerSocket |
| A socket used for HTTP transport. More... | |
| class | ModuleHttpServer |
Enumerations | |
| enum | HttpState { HTTP_LISTEN = 0, HTTP_SERVE_WAIT_REQUEST = 1, HTTP_SERVE_RECV_POSTDATA = 2, HTTP_SERVE_SEND_DATA = 3 } |
| HTTP socket states. More... | |
Variables | |
| static ModuleHttpServer * | HttpModule |
| static bool | claimed |
|
|
HTTP socket states.
Definition at line 28 of file m_httpd.cpp. 00029 { 00030 HTTP_LISTEN = 0, 00031 HTTP_SERVE_WAIT_REQUEST = 1, 00032 HTTP_SERVE_RECV_POSTDATA = 2, 00033 HTTP_SERVE_SEND_DATA = 3 00034 };
|
|
|
Definition at line 24 of file m_httpd.cpp. Referenced by ModuleHttpServer::OnRequest(), and HttpServerSocket::ServeData(). |
|
|
Definition at line 21 of file m_httpd.cpp. |