comparison src/http/ngx_http.h @ 378:820f6378fc00 NGINX_0_7_1

nginx 0.7.1 *) Change: now locations are searched in a tree. *) Change: the "optimize_server_names" directive was canceled due to the "server_name_in_redirect" directive introduction. *) Change: some long deprecated directives are not supported anymore. *) Change: the "none" parameter in the "ssl_session_cache" directive; now this is default parameter. Thanks to Rob Mueller. *) Bugfix: worker processes might not catch reconfiguration and log rotation signals. *) Bugfix: nginx could not be built on latest Fedora 9 Linux. Thanks to Roxis.
author Igor Sysoev <http://sysoev.ru>
date Mon, 26 May 2008 00:00:00 +0400
parents 54fad6c4b555
children 34fb3a573548
comparison
equal deleted inserted replaced
377:5d98007adb5f 378:820f6378fc00
55 55
56 #define ngx_http_get_module_ctx(r, module) (r)->ctx[module.ctx_index] 56 #define ngx_http_get_module_ctx(r, module) (r)->ctx[module.ctx_index]
57 #define ngx_http_set_ctx(r, c, module) r->ctx[module.ctx_index] = c; 57 #define ngx_http_set_ctx(r, c, module) r->ctx[module.ctx_index] = c;
58 58
59 59
60 ngx_int_t ngx_http_add_location(ngx_conf_t *cf, ngx_queue_t **locations,
61 ngx_http_core_loc_conf_t *clcf);
62
63
60 void ngx_http_init_connection(ngx_connection_t *c); 64 void ngx_http_init_connection(ngx_connection_t *c);
61 65
62 #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME 66 #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
63 int ngx_http_ssl_servername(ngx_ssl_conn_t *ssl_conn, int *ad, void *arg); 67 int ngx_http_ssl_servername(ngx_ssl_conn_t *ssl_conn, int *ad, void *arg);
64 #endif 68 #endif
104 108
105 109
106 extern ngx_module_t ngx_http_module; 110 extern ngx_module_t ngx_http_module;
107 111
108 112
109 extern ngx_uint_t ngx_http_total_requests;
110 extern uint64_t ngx_http_total_sent;
111
112
113 extern ngx_http_output_header_filter_pt ngx_http_top_header_filter; 113 extern ngx_http_output_header_filter_pt ngx_http_top_header_filter;
114 extern ngx_http_output_body_filter_pt ngx_http_top_body_filter; 114 extern ngx_http_output_body_filter_pt ngx_http_top_body_filter;
115 115
116 116
117 #endif /* _NGX_HTTP_H_INCLUDED_ */ 117 #endif /* _NGX_HTTP_H_INCLUDED_ */