2002-08-07 00:39:45 +08:00
|
|
|
#ifndef _NGX_HTTP_H_INCLUDED_
|
|
|
|
#define _NGX_HTTP_H_INCLUDED_
|
|
|
|
|
|
|
|
|
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_types.h>
|
2002-08-30 00:59:54 +08:00
|
|
|
#include <ngx_hunk.h>
|
2002-09-02 22:48:24 +08:00
|
|
|
#include <ngx_files.h>
|
2002-08-07 00:39:45 +08:00
|
|
|
#include <ngx_connection.h>
|
|
|
|
|
|
|
|
|
|
|
|
#define NGX_HTTP_GET 1
|
|
|
|
#define NGX_HTTP_HEAD 2
|
|
|
|
#define NGX_HTTP_POST 3
|
|
|
|
|
|
|
|
#define NGX_HTTP_CONN_CLOSE 0
|
|
|
|
#define NGX_HTTP_CONN_KEEP_ALIVE 1
|
|
|
|
|
2002-08-30 00:59:54 +08:00
|
|
|
|
|
|
|
#define NGX_HTTP_HEADER_DONE 1
|
|
|
|
#define NGX_HTTP_INVALID_METHOD 10
|
|
|
|
#define NGX_HTTP_INVALID_REQUEST 11
|
|
|
|
#define NGX_HTTP_INVALID_HEAD 12
|
|
|
|
#define NGX_HTTP_INVALID_HEADER 13
|
|
|
|
|
2002-08-16 23:27:03 +08:00
|
|
|
|
|
|
|
#define NGX_HTTP_OK 200
|
2002-09-02 22:48:24 +08:00
|
|
|
#define NGX_HTTP_SPECIAL_RESPONSE 300
|
2002-08-20 22:48:28 +08:00
|
|
|
#define NGX_HTTP_MOVED_PERMANENTLY 302
|
2002-08-30 00:59:54 +08:00
|
|
|
#define NGX_HTTP_BAD_REQUEST 400
|
2002-08-16 23:27:03 +08:00
|
|
|
#define NGX_HTTP_NOT_FOUND 404
|
|
|
|
#define NGX_HTTP_INTERNAL_SERVER_ERROR 503
|
|
|
|
|
|
|
|
|
|
|
|
#define NGX_HTTP_STATIC_HANDLER 0
|
|
|
|
#define NGX_HTTP_DIRECTORY_HANDLER 1
|
2002-08-07 00:39:45 +08:00
|
|
|
|
|
|
|
|
2002-08-16 01:20:26 +08:00
|
|
|
|
2002-08-16 23:27:03 +08:00
|
|
|
typedef struct {
|
2002-08-30 00:59:54 +08:00
|
|
|
char *doc_root;
|
|
|
|
size_t doc_root_len;
|
2002-09-02 22:48:24 +08:00
|
|
|
|
|
|
|
size_t request_pool_size;
|
|
|
|
|
|
|
|
size_t header_buffer_size;
|
|
|
|
size_t discarded_buffer_size;
|
2002-08-30 00:59:54 +08:00
|
|
|
|
|
|
|
unsigned int header_timeout;
|
2002-08-16 23:27:03 +08:00
|
|
|
} ngx_http_server_t;
|
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
typedef struct {
|
|
|
|
char *buff;
|
|
|
|
char *pos;
|
|
|
|
char *last;
|
|
|
|
char *end;
|
|
|
|
} ngx_buff_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int status;
|
|
|
|
int connection;
|
2002-08-20 22:48:28 +08:00
|
|
|
off_t content_length;
|
|
|
|
char *location;
|
2002-08-07 00:39:45 +08:00
|
|
|
char *content_type;
|
|
|
|
char *charset;
|
|
|
|
char *etag;
|
2002-08-20 22:48:28 +08:00
|
|
|
char *server;
|
2002-08-07 00:39:45 +08:00
|
|
|
time_t date;
|
|
|
|
time_t last_modified;
|
2002-08-20 22:48:28 +08:00
|
|
|
} ngx_http_headers_out_t;
|
2002-08-07 00:39:45 +08:00
|
|
|
|
|
|
|
typedef struct ngx_http_request_s ngx_http_request_t;
|
|
|
|
|
|
|
|
struct ngx_http_request_s {
|
2002-08-16 23:27:03 +08:00
|
|
|
char *filename;
|
|
|
|
char *location;
|
2002-08-26 23:18:19 +08:00
|
|
|
ngx_fd_t fd;
|
2002-08-20 22:48:28 +08:00
|
|
|
|
2002-09-07 18:14:25 +08:00
|
|
|
void **ctx;
|
|
|
|
void **loc_conf;
|
|
|
|
void **srv_conf;
|
|
|
|
|
2002-08-30 00:59:54 +08:00
|
|
|
ngx_pool_t *pool;
|
|
|
|
ngx_hunk_t *header_in;
|
|
|
|
|
|
|
|
/*
|
|
|
|
ngx_http_headers_in_t *headers_in;
|
|
|
|
*/
|
2002-08-20 22:48:28 +08:00
|
|
|
ngx_http_headers_out_t *headers_out;
|
2002-08-16 23:27:03 +08:00
|
|
|
|
|
|
|
int filename_len;
|
|
|
|
int (*handler)(ngx_http_request_t *r);
|
|
|
|
|
2002-09-02 22:48:24 +08:00
|
|
|
ngx_file_info_t fileinfo;
|
2002-08-20 22:48:28 +08:00
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
int method;
|
|
|
|
|
|
|
|
int http_version;
|
|
|
|
int http_major;
|
|
|
|
int http_minor;
|
|
|
|
|
|
|
|
char *uri;
|
|
|
|
ngx_http_request_t *main;
|
|
|
|
|
2002-08-16 23:27:03 +08:00
|
|
|
ngx_connection_t *connection;
|
|
|
|
ngx_http_server_t *server;
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2002-08-22 23:24:03 +08:00
|
|
|
int filter;
|
|
|
|
|
2002-09-02 22:48:24 +08:00
|
|
|
ssize_t client_content_length;
|
|
|
|
char *discarded_buffer;
|
|
|
|
|
2002-08-30 00:59:54 +08:00
|
|
|
unsigned header_timeout:1;
|
2002-09-02 22:48:24 +08:00
|
|
|
unsigned process_header:1;
|
2002-08-30 00:59:54 +08:00
|
|
|
|
2002-08-20 22:48:28 +08:00
|
|
|
unsigned header_only:1;
|
2002-08-07 00:39:45 +08:00
|
|
|
unsigned unusual_uri:1;
|
|
|
|
unsigned complex_uri:1;
|
|
|
|
|
|
|
|
int state;
|
|
|
|
char *uri_start;
|
|
|
|
char *uri_end;
|
|
|
|
char *uri_ext;
|
|
|
|
char *args_start;
|
|
|
|
char *header_name_start;
|
|
|
|
char *header_name_end;
|
|
|
|
char *header_start;
|
|
|
|
char *header_end;
|
|
|
|
#ifdef NGX_EVENT
|
|
|
|
int (*state_handler)(ngx_http_request_t *r);
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|
2002-09-07 18:14:25 +08:00
|
|
|
typedef struct {
|
|
|
|
int index;
|
|
|
|
} ngx_http_module_t;
|
|
|
|
|
|
|
|
#define NGX_HTTP_MODULE 0
|
|
|
|
|
|
|
|
#define ngx_get_module_loc_conf(r, module) r->loc_conf[module.index]
|
|
|
|
#define ngx_get_module_ctx(r, module) r->ctx[module.index]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 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-08-07 00:39:45 +08:00
|
|
|
int ngx_http_init_connection(ngx_connection_t *c);
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* _NGX_HTTP_H_INCLUDED_ */
|