comparison src/http/ngx_http_core_module.c @ 1882:4ca7c40af923

fix order
author Igor Sysoev <igor@sysoev.ru>
date Thu, 07 Feb 2008 10:38:13 +0000
parents 10ab4a7f92fe
children 4a8c9139e579
comparison
equal deleted inserted replaced
1881:10ab4a7f92fe 1882:4ca7c40af923
111 { ngx_string("any"), NGX_HTTP_SATISFY_ANY }, 111 { ngx_string("any"), NGX_HTTP_SATISFY_ANY },
112 { ngx_null_string, 0 } 112 { ngx_null_string, 0 }
113 }; 113 };
114 114
115 115
116 static ngx_str_t ngx_http_core_get_method = { 3, (u_char *) "GET " };
117
118
119 #if (NGX_HTTP_GZIP) 116 #if (NGX_HTTP_GZIP)
120 117
121 static ngx_conf_enum_t ngx_http_gzip_http_version[] = { 118 static ngx_conf_enum_t ngx_http_gzip_http_version[] = {
122 { ngx_string("1.0"), NGX_HTTP_VERSION_10 }, 119 { ngx_string("1.0"), NGX_HTTP_VERSION_10 },
123 { ngx_string("1.1"), NGX_HTTP_VERSION_11 }, 120 { ngx_string("1.1"), NGX_HTTP_VERSION_11 },
651 NULL, /* exit thread */ 648 NULL, /* exit thread */
652 NULL, /* exit process */ 649 NULL, /* exit process */
653 NULL, /* exit master */ 650 NULL, /* exit master */
654 NGX_MODULE_V1_PADDING 651 NGX_MODULE_V1_PADDING
655 }; 652 };
653
654
655 static ngx_str_t ngx_http_core_get_method = { 3, (u_char *) "GET " };
656 656
657 657
658 void 658 void
659 ngx_http_handler(ngx_http_request_t *r) 659 ngx_http_handler(ngx_http_request_t *r)
660 { 660 {