|
Apache HTTPD
|
#include "apr_strings.h"#include "apr_thread_proc.h"#include "apr_want.h"#include "httpd.h"#include "http_config.h"#include "http_connection.h"#include "http_core.h"#include "http_protocol.h"#include "http_request.h"#include "util_filter.h"#include "util_ebcdic.h"#include "ap_mpm.h"#include "scoreboard.h"#include "mod_core.h"Go to the source code of this file.
Macros | |
| #define | APR_WANT_STRFUNC |
Functions | |
| static const char * | set_keep_alive_timeout (cmd_parms *cmd, void *dummy, const char *arg) |
| static const char * | set_keep_alive (cmd_parms *cmd, void *dummy, int arg) |
| static const char * | set_keep_alive_max (cmd_parms *cmd, void *dummy, const char *arg) |
| static const char * | http_scheme (const request_rec *r) |
| static apr_port_t | http_port (const request_rec *r) |
| static int | ap_process_http_async_connection (conn_rec *c) |
| static int | ap_process_http_sync_connection (conn_rec *c) |
| static int | ap_process_http_connection (conn_rec *c) |
| static int | http_create_request (request_rec *r) |
| static int | http_send_options (request_rec *r) |
| static int | http_post_config (apr_pool_t *p, apr_pool_t *plog, apr_pool_t *ptemp, server_rec *s) |
| static void | register_hooks (apr_pool_t *p) |
Variables | |
| ap_filter_rec_t * | ap_http_input_filter_handle |
| ap_filter_rec_t * | ap_http_header_filter_handle |
| ap_filter_rec_t * | ap_chunk_filter_handle |
| ap_filter_rec_t * | ap_http_outerror_filter_handle |
| ap_filter_rec_t * | ap_byterange_filter_handle |
| const char * | ap_multipart_boundary |
| static int | async_mpm = 0 |
| static const command_rec | http_cmds [] |
| static int *const | aplog_module_index = &( http_module.module_index) |
| #define APR_WANT_STRFUNC |
Definition at line 20 of file http_core.c.
< Module has handled this stage.
Definition at line 135 of file http_core.c.
Definition at line 243 of file http_core.c.
< Set on non-blocking sockets * (timeout != 0) on which the * previous read() did not fill a buffer * completely. the next apr_socket_recv() * will first call select()/poll() rather than * going straight into read(). (Can also * be set by an application to force a * select()/poll() call before the next * read, in cases where the app expects * that an immediate read would fail.)
< Module has handled this stage.
Definition at line 180 of file http_core.c.
|
static |
< Module has handled this stage.
Definition at line 253 of file http_core.c.
|
static |
Definition at line 126 of file http_core.c.
|
static |
< Module has handled this stage.
Definition at line 278 of file http_core.c.
|
static |
Definition at line 113 of file http_core.c.
|
static |
< Module has served the response completely * - it's safe to die() with no more output
< Module declines to handle
Definition at line 269 of file http_core.c.
|
static |
Definition at line 290 of file http_core.c.
< Forbidden in <Limit>
< Forbidden in <Directory>
< Forbidden in <Location>
< Forbidden in <Files> or <If>
< Forbidden in <Proxy>
Definition at line 78 of file http_core.c.
< Forbidden in <Limit>
< Forbidden in <Directory>
< Forbidden in <Location>
< Forbidden in <Files> or <If>
< Forbidden in <Proxy>
Definition at line 90 of file http_core.c.
|
static |
< Forbidden in <Limit>
< Forbidden in <Directory>
< Forbidden in <Location>
< Forbidden in <Files> or <If>
< Forbidden in <Proxy>
Definition at line 51 of file http_core.c.
Definition at line 318 of file http_core.c.
|
static |
Definition at line 49 of file http_core.c.
|
static |
Definition at line 102 of file http_core.c.