fix order
Igor Sysoev
14 years ago
132 | 132 | ngx_command_t *cmd, void *conf); |
133 | 133 | static char *ngx_http_fastcgi_upstream_fail_timeout_unsupported(ngx_conf_t *cf, |
134 | 134 | ngx_command_t *cmd, void *conf); |
135 | ||
136 | ||
137 | static ngx_http_fastcgi_request_start_t ngx_http_fastcgi_request_start = { | |
138 | { 1, /* version */ | |
139 | NGX_HTTP_FASTCGI_BEGIN_REQUEST, /* type */ | |
140 | 0, /* request_id_hi */ | |
141 | 1, /* request_id_lo */ | |
142 | 0, /* content_length_hi */ | |
143 | sizeof(ngx_http_fastcgi_begin_request_t), /* content_length_lo */ | |
144 | 0, /* padding_length */ | |
145 | 0 }, /* reserved */ | |
146 | ||
147 | { 0, /* role_hi */ | |
148 | NGX_HTTP_FASTCGI_RESPONDER, /* role_lo */ | |
149 | 0, /* NGX_HTTP_FASTCGI_KEEP_CONN */ /* flags */ | |
150 | { 0, 0, 0, 0, 0 } }, /* reserved[5] */ | |
151 | ||
152 | { 1, /* version */ | |
153 | NGX_HTTP_FASTCGI_PARAMS, /* type */ | |
154 | 0, /* request_id_hi */ | |
155 | 1 }, /* request_id_lo */ | |
156 | ||
157 | }; | |
158 | 135 | |
159 | 136 | |
160 | 137 | static ngx_str_t ngx_http_fastcgi_script_name = |
408 | 385 | NULL, /* exit process */ |
409 | 386 | NULL, /* exit master */ |
410 | 387 | NGX_MODULE_V1_PADDING |
388 | }; | |
389 | ||
390 | ||
391 | static ngx_http_fastcgi_request_start_t ngx_http_fastcgi_request_start = { | |
392 | { 1, /* version */ | |
393 | NGX_HTTP_FASTCGI_BEGIN_REQUEST, /* type */ | |
394 | 0, /* request_id_hi */ | |
395 | 1, /* request_id_lo */ | |
396 | 0, /* content_length_hi */ | |
397 | sizeof(ngx_http_fastcgi_begin_request_t), /* content_length_lo */ | |
398 | 0, /* padding_length */ | |
399 | 0 }, /* reserved */ | |
400 | ||
401 | { 0, /* role_hi */ | |
402 | NGX_HTTP_FASTCGI_RESPONDER, /* role_lo */ | |
403 | 0, /* NGX_HTTP_FASTCGI_KEEP_CONN */ /* flags */ | |
404 | { 0, 0, 0, 0, 0 } }, /* reserved[5] */ | |
405 | ||
406 | { 1, /* version */ | |
407 | NGX_HTTP_FASTCGI_PARAMS, /* type */ | |
408 | 0, /* request_id_hi */ | |
409 | 1 }, /* request_id_lo */ | |
410 | ||
411 | 411 | }; |
412 | 412 | |
413 | 413 |