nginx/src/http/ngx_http.h

95 lines
2.6 KiB
C
Raw Normal View History

#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-11-19 05:34:08 +08:00
#include <ngx_garbage_collector.h>
2003-11-27 15:45:22 +08:00
typedef struct ngx_http_request_s ngx_http_request_t;
#include <ngx_http_cache.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-11-05 06:12:39 +08:00
#include <ngx_http_busy_lock.h>
2003-06-02 23:24:30 +08:00
#include <ngx_http_filter.h>
#include <ngx_http_log_handler.h>
2003-05-27 20:18:54 +08:00
#include <ngx_http_core_module.h>
2002-12-15 14:25:09 +08:00
2002-08-26 23:18:19 +08:00
typedef struct {
2003-11-20 00:26:41 +08:00
u_int connection;
char *action;
char *client;
char *url;
2002-08-26 23:18:19 +08:00
} ngx_http_log_ctx_t;
2003-05-27 20:18:54 +08:00
#define ngx_http_get_module_ctx(r, module) r->ctx[module.ctx_index]
2003-11-11 05:09:22 +08:00
#define ngx_http_get_module_err_ctx(r, module) \
(r->err_ctx ? r->err_ctx[module.ctx_index] : 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 */
#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);
2003-10-10 23:10:50 +08:00
void ngx_http_writer(ngx_event_t *wev);
2003-05-14 00:02:32 +08:00
2003-11-20 00:26:41 +08:00
void ngx_http_empty_handler(ngx_event_t *wev);
2003-05-14 00:02:32 +08:00
2003-10-09 15:00:45 +08:00
int ngx_http_send_last(ngx_http_request_t *r);
2003-05-14 00:02:32 +08:00
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-10-27 16:53:49 +08:00
int ngx_http_read_client_request_body(ngx_http_request_t *r,
int request_buffer_size);
2003-04-28 23:06:39 +08:00
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);
2003-10-29 16:30:44 +08:00
ngx_table_elt_t *ngx_http_add_header(void *header,
ngx_http_header_t *http_headers);
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-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
#endif /* _NGX_HTTP_H_INCLUDED_ */