nginx/src/http/ngx_http.h

109 lines
2.9 KiB
C
Raw Normal View History

/*
* Copyright (C) Igor Sysoev
*/
#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;
typedef struct ngx_http_log_ctx_s ngx_http_log_ctx_t;
2003-12-01 04:03:18 +08:00
typedef struct ngx_http_cleanup_s ngx_http_cleanup_t;
typedef struct ngx_http_in_addr_s ngx_http_in_addr_t;
typedef struct ngx_http_variable_value_s ngx_http_variable_value_t;
2003-11-27 15:45:22 +08:00
2004-03-13 00:57:08 +08:00
#if (NGX_HTTP_CACHE)
2004-07-08 23:17:47 +08:00
#include <ngx_http_cache.h>
2004-03-13 00:57:08 +08:00
#endif
2004-07-08 23:17:47 +08:00
/* STUB */
2003-11-27 15:45:22 +08:00
#include <ngx_http_cache.h>
2004-03-13 00:57:08 +08:00
#include <ngx_http_upstream.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>
#include <ngx_http_log_module.h>
2003-05-27 20:18:54 +08:00
#include <ngx_http_core_module.h>
#include <ngx_http_variables.h>
#include <ngx_http_script.h>
2004-07-17 01:11:43 +08:00
#if (NGX_HTTP_SSL)
#include <ngx_http_ssl_module.h>
2004-07-08 23:17:47 +08:00
#endif
2002-12-15 14:25:09 +08:00
struct ngx_http_log_ctx_s {
ngx_str_t *client;
ngx_http_request_t *request;
};
2002-08-26 23:18:19 +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
#define ngx_http_set_ctx(r, c, module) r->ctx[module.ctx_index] = c;
#define ngx_http_delete_ctx(r, module) r->ctx[module.ctx_index] = NULL;
2002-09-07 18:14:25 +08:00
2003-05-12 23:52:24 +08:00
void ngx_http_init_connection(ngx_connection_t *c);
2003-11-29 01:41:47 +08:00
ngx_int_t ngx_http_parse_request_line(ngx_http_request_t *r, ngx_buf_t *b);
2004-06-16 23:32:11 +08:00
ngx_int_t ngx_http_parse_complex_uri(ngx_http_request_t *r);
ngx_int_t ngx_http_parse_header_line(ngx_http_request_t *r, ngx_buf_t *b);
2003-11-29 01:41:47 +08:00
2004-06-16 23:32:11 +08:00
ngx_int_t 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
2004-06-16 23:32:11 +08:00
ngx_int_t 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);
u_char * ngx_http_log_error_info(ngx_http_request_t *r, u_char *buf,
size_t len);
2003-05-14 00:02:32 +08:00
2003-02-07 01:21:13 +08:00
ngx_int_t ngx_http_read_client_request_body(ngx_http_request_t *r,
ngx_http_client_body_handler_pt post_handler);
2003-04-28 23:06:39 +08:00
2004-06-16 23:32:11 +08:00
ngx_int_t ngx_http_send_header(ngx_http_request_t *r);
ngx_int_t ngx_http_special_response_handler(ngx_http_request_t *r,
ngx_int_t error);
2003-02-07 01:21:13 +08:00
2004-03-16 15:10:12 +08:00
time_t ngx_http_parse_time(u_char *value, size_t len);
2003-02-07 01:21:13 +08:00
size_t ngx_http_get_time(char *buf, time_t t);
2003-10-29 16:30:44 +08:00
2004-06-16 23:32:11 +08:00
ngx_int_t ngx_http_discard_body(ngx_http_request_t *r);
2002-12-15 14:25:09 +08:00
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-12-19 16:15:11 +08:00
extern ngx_uint_t ngx_http_total_requests;
extern uint64_t ngx_http_total_sent;
2003-01-09 13:36:00 +08:00
2004-06-16 23:32:11 +08:00
extern ngx_http_output_header_filter_pt ngx_http_top_header_filter;
extern ngx_http_output_body_filter_pt ngx_http_top_body_filter;
2002-09-11 23:18:33 +08:00
2003-02-07 01:21:13 +08:00
/* STUB */
2004-06-16 23:32:11 +08:00
ngx_int_t ngx_http_log_handler(ngx_http_request_t *r);
2003-02-07 01:21:13 +08:00
/**/
2002-09-11 23:18:33 +08:00
#endif /* _NGX_HTTP_H_INCLUDED_ */