nginx-quic/src/http/ngx_http.h

109 lines
2.9 KiB
C
Raw Normal View History

#ifndef _NGX_HTTP_H_INCLUDED_
#define _NGX_HTTP_H_INCLUDED_
#include <ngx_config.h>
2003-06-03 11:42:58 -04:00
#include <ngx_core.h>
2003-11-18 18:34:08 -03:00
#include <ngx_garbage_collector.h>
2003-11-27 04:45:22 -03:00
typedef struct ngx_http_request_s ngx_http_request_t;
2003-11-30 17:03:18 -03:00
typedef struct ngx_http_cleanup_s ngx_http_cleanup_t;
2003-11-27 04:45:22 -03:00
2004-03-12 13:57:08 -03:00
#if (NGX_HTTP_CACHE)
#endif
2003-11-27 04:45:22 -03:00
#include <ngx_http_cache.h>
2004-03-12 13:57:08 -03:00
2003-05-19 12:39:14 -04:00
#include <ngx_http_request.h>
2003-05-27 08:18:54 -04:00
#include <ngx_http_config.h>
2003-11-04 19:12:39 -03:00
#include <ngx_http_busy_lock.h>
#include <ngx_http_log_handler.h>
2003-05-27 08:18:54 -04:00
#include <ngx_http_core_module.h>
2002-12-15 03:25:09 -03:00
2002-08-26 11:18:19 -04:00
typedef struct {
2004-03-16 03:10:12 -04:00
u_int connection;
2004-03-16 17:26:01 -04:00
/*
* we declare "action" as "char *" because the actions are usually
* the static strings and in the "u_char *" case we have to override
* all the time their types
*/
char *action;
2004-03-16 03:10:12 -04:00
u_char *client;
u_char *url;
2002-08-26 11:18:19 -04:00
} ngx_http_log_ctx_t;
2003-05-27 08:18:54 -04:00
#define ngx_http_get_module_ctx(r, module) r->ctx[module.ctx_index]
2003-11-10 18:09:22 -03: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 06:14:25 -04:00
2003-03-11 16:38:13 -04:00
#define ngx_http_create_ctx(r, cx, module, size, error) \
2002-09-11 11:18:33 -04:00
do { \
2003-03-11 16:38:13 -04:00
ngx_test_null(cx, ngx_pcalloc(r->pool, size), error); \
2003-05-27 08:18:54 -04:00
r->ctx[module.ctx_index] = cx; \
2002-09-11 11:18:33 -04:00
} while (0)
2003-09-28 15:29:06 -04:00
#define ngx_http_delete_ctx(r, module) \
r->ctx[module.ctx_index] = NULL;
2002-09-07 06:14:25 -04:00
/* STUB */
#define NGX_INDEX "index.html"
2002-09-02 10:48:24 -04:00
/* STUB */
int ngx_http_init(ngx_pool_t *pool, ngx_log_t *log);
2002-12-15 03:25:09 -03:00
/**/
2002-09-02 10:48:24 -04:00
2003-05-12 11:52:24 -04:00
void ngx_http_init_connection(ngx_connection_t *c);
2003-11-28 14:41:47 -03:00
2003-10-03 11:50:53 -04:00
int ngx_http_parse_request_line(ngx_http_request_t *r);
2003-11-28 14:41:47 -03:00
int ngx_http_parse_complex_uri(ngx_http_request_t *r);
int ngx_http_parse_header_line(ngx_http_request_t *r, ngx_buf_t *b);
2003-11-28 14:41:47 -03:00
2003-05-15 11:42:53 -04:00
int ngx_http_find_server_conf(ngx_http_request_t *r);
2003-05-14 13:13:13 -04:00
void ngx_http_handler(ngx_http_request_t *r);
2003-05-13 12:02:32 -04:00
void ngx_http_finalize_request(ngx_http_request_t *r, int error);
2003-10-10 11:10:50 -04:00
void ngx_http_writer(ngx_event_t *wev);
2003-05-13 12:02:32 -04:00
2003-11-19 13:26:41 -03:00
void ngx_http_empty_handler(ngx_event_t *wev);
2003-05-13 12:02:32 -04:00
2003-10-09 03:00:45 -04:00
int ngx_http_send_last(ngx_http_request_t *r);
2003-05-13 12:02:32 -04:00
void ngx_http_close_request(ngx_http_request_t *r, int error);
void ngx_http_close_connection(ngx_connection_t *c);
2003-02-06 14:21:13 -03:00
2004-03-29 13:43:58 -04:00
ngx_int_t ngx_http_read_client_request_body(ngx_http_request_t *r);
2003-04-28 11:06:39 -04:00
2003-02-06 14:21:13 -03:00
int ngx_http_send_header(ngx_http_request_t *r);
2003-03-20 12:09:44 -04:00
int ngx_http_special_response_handler(ngx_http_request_t *r, int error);
2003-02-06 14:21:13 -03:00
2004-03-16 03:10:12 -04:00
time_t ngx_http_parse_time(u_char *value, size_t len);
2003-02-06 14:21:13 -03:00
size_t ngx_http_get_time(char *buf, time_t t);
2003-10-29 05:30:44 -03:00
ngx_table_elt_t *ngx_http_add_header(void *header,
ngx_http_header_t *http_headers);
2002-12-15 03:25:09 -03:00
int ngx_http_discard_body(ngx_http_request_t *r);
2003-01-30 15:21:39 -03:00
2003-05-19 12:39:14 -04:00
extern ngx_module_t ngx_http_module;
2003-01-09 02:36:00 -03:00
2003-12-19 05:15:11 -03:00
extern ngx_uint_t ngx_http_total_requests;
extern uint64_t ngx_http_total_sent;
2003-01-09 02:36:00 -03:00
2002-09-11 11:18:33 -04:00
2003-02-06 14:21:13 -03:00
/* STUB */
int ngx_http_log_handler(ngx_http_request_t *r);
/**/
2002-09-11 11:18:33 -04:00
#endif /* _NGX_HTTP_H_INCLUDED_ */