2002-08-07 00:39:45 +08:00
|
|
|
#ifndef _NGX_HTTP_H_INCLUDED_
|
|
|
|
#define _NGX_HTTP_H_INCLUDED_
|
|
|
|
|
|
|
|
|
|
|
|
#include <ngx_config.h>
|
2003-06-03 23:42:58 +08:00
|
|
|
#include <ngx_core.h>
|
2003-05-20 00:39:14 +08:00
|
|
|
#include <ngx_http_request.h>
|
2003-05-27 20:18:54 +08:00
|
|
|
#include <ngx_http_config.h>
|
2003-06-02 23:24:30 +08:00
|
|
|
#include <ngx_http_filter.h>
|
2003-05-27 20:18:54 +08:00
|
|
|
#include <ngx_http_core_module.h>
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2002-12-15 14:25:09 +08:00
|
|
|
|
2002-08-26 23:18:19 +08:00
|
|
|
typedef struct {
|
|
|
|
char *action;
|
|
|
|
char *client;
|
|
|
|
char *url;
|
|
|
|
} ngx_http_log_ctx_t;
|
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2003-01-10 14:09:20 +08:00
|
|
|
typedef int (*ngx_http_handler_pt)(ngx_http_request_t *r);
|
|
|
|
|
2002-12-26 15:24:21 +08:00
|
|
|
typedef int (*ngx_http_output_header_filter_p)(ngx_http_request_t *r);
|
|
|
|
|
|
|
|
typedef int (*ngx_http_output_body_filter_p)
|
|
|
|
(ngx_http_request_t *r, ngx_chain_t *chain);
|
|
|
|
|
|
|
|
|
2003-05-27 20:18:54 +08:00
|
|
|
#define ngx_http_get_module_ctx(r, module) r->ctx[module.ctx_index]
|
2002-09-07 18:14:25 +08:00
|
|
|
|
2003-03-12 04:38:13 +08:00
|
|
|
#define ngx_http_create_ctx(r, cx, module, size, error) \
|
2002-09-11 23:18:33 +08:00
|
|
|
do { \
|
2003-03-12 04:38:13 +08:00
|
|
|
ngx_test_null(cx, ngx_pcalloc(r->pool, size), error); \
|
2003-05-27 20:18:54 +08:00
|
|
|
r->ctx[module.ctx_index] = cx; \
|
2002-09-11 23:18:33 +08:00
|
|
|
} while (0)
|
|
|
|
|
2003-09-29 03:29:06 +08:00
|
|
|
#define ngx_http_delete_ctx(r, module) \
|
|
|
|
r->ctx[module.ctx_index] = NULL;
|
2002-09-07 18:14:25 +08:00
|
|
|
|
|
|
|
|
|
|
|
/* STUB */
|
2002-08-07 00:39:45 +08:00
|
|
|
#define NGX_INDEX "index.html"
|
|
|
|
|
|
|
|
|
2002-09-02 22:48:24 +08:00
|
|
|
/* STUB */
|
|
|
|
int ngx_http_init(ngx_pool_t *pool, ngx_log_t *log);
|
2002-12-15 14:25:09 +08:00
|
|
|
/**/
|
2002-09-02 22:48:24 +08:00
|
|
|
|
2003-05-12 23:52:24 +08:00
|
|
|
void ngx_http_init_connection(ngx_connection_t *c);
|
2003-10-03 23:50:53 +08:00
|
|
|
int ngx_http_parse_request_line(ngx_http_request_t *r);
|
|
|
|
int ngx_http_parse_header_line(ngx_http_request_t *r, ngx_hunk_t *h);
|
2003-05-15 23:42:53 +08:00
|
|
|
int ngx_http_find_server_conf(ngx_http_request_t *r);
|
2003-05-15 01:13:13 +08:00
|
|
|
void ngx_http_handler(ngx_http_request_t *r);
|
2003-05-14 00:02:32 +08:00
|
|
|
void ngx_http_finalize_request(ngx_http_request_t *r, int error);
|
|
|
|
void ngx_http_set_write_handler(ngx_http_request_t *r);
|
|
|
|
|
|
|
|
|
|
|
|
void ngx_http_close_request(ngx_http_request_t *r, int error);
|
|
|
|
void ngx_http_close_connection(ngx_connection_t *c);
|
|
|
|
|
2003-02-07 01:21:13 +08:00
|
|
|
|
|
|
|
|
2003-04-28 23:06:39 +08:00
|
|
|
int ngx_http_init_client_request_body(ngx_http_request_t *r, int size);
|
|
|
|
int ngx_http_read_client_request_body(ngx_http_request_t *r);
|
|
|
|
int ngx_http_init_client_request_body_chain(ngx_http_request_t *r);
|
|
|
|
void ngx_http_reinit_client_request_body_hunks(ngx_http_request_t *r);
|
|
|
|
|
|
|
|
|
2003-02-07 01:21:13 +08:00
|
|
|
int ngx_http_send_header(ngx_http_request_t *r);
|
2003-03-21 00:09:44 +08:00
|
|
|
int ngx_http_special_response_handler(ngx_http_request_t *r, int error);
|
2003-02-07 01:21:13 +08:00
|
|
|
|
|
|
|
|
|
|
|
time_t ngx_http_parse_time(char *value, size_t len);
|
|
|
|
size_t ngx_http_get_time(char *buf, time_t t);
|
2002-08-07 00:39:45 +08:00
|
|
|
|
|
|
|
|
2002-12-15 14:25:09 +08:00
|
|
|
int ngx_http_discard_body(ngx_http_request_t *r);
|
|
|
|
|
|
|
|
|
2003-01-31 02:21:39 +08:00
|
|
|
|
2003-05-20 00:39:14 +08:00
|
|
|
extern ngx_module_t ngx_http_module;
|
2003-01-09 13:36:00 +08:00
|
|
|
|
|
|
|
|
2003-05-20 00:39:14 +08:00
|
|
|
extern int ngx_max_module;
|
2003-01-09 13:36:00 +08:00
|
|
|
|
2002-09-11 23:18:33 +08:00
|
|
|
|
2003-03-21 00:09:44 +08:00
|
|
|
extern ngx_array_t ngx_http_translate_handlers;
|
2003-01-10 14:09:20 +08:00
|
|
|
extern ngx_array_t ngx_http_index_handlers;
|
|
|
|
|
2003-04-08 23:40:10 +08:00
|
|
|
extern int (*ngx_http_top_header_filter) (ngx_http_request_t *r);
|
|
|
|
extern int (*ngx_http_top_body_filter) (ngx_http_request_t *r, ngx_chain_t *ch);
|
|
|
|
|
2003-01-10 14:09:20 +08:00
|
|
|
|
2003-02-07 01:21:13 +08:00
|
|
|
/* STUB */
|
|
|
|
int ngx_http_log_handler(ngx_http_request_t *r);
|
|
|
|
/**/
|
|
|
|
|
2002-09-11 23:18:33 +08:00
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
#endif /* _NGX_HTTP_H_INCLUDED_ */
|