blob: 086e57dd4a8bc2f27ea0618417847a53a28aea2c [file] [log] [blame]
Igor Sysoev4e9393a2003-01-09 05:36:00 +00001
2#include <ngx_config.h>
Igor Sysoev4e9393a2003-01-09 05:36:00 +00003#include <ngx_core.h>
Igor Sysoevb3e73d82003-10-10 15:10:50 +00004#include <ngx_event.h>
Igor Sysoev6253ca12003-05-27 12:18:54 +00005#include <ngx_http.h>
Igor Sysoeva9830112003-05-19 16:39:14 +00006#include <nginx.h>
Igor Sysoev4e9393a2003-01-09 05:36:00 +00007
Igor Sysoev6253ca12003-05-27 12:18:54 +00008
Igor Sysoevb3e73d82003-10-10 15:10:50 +00009static void ngx_http_phase_event_handler(ngx_event_t *rev);
10static void ngx_http_run_phases(ngx_http_request_t *r);
Igor Sysoev4e9393a2003-01-09 05:36:00 +000011
Igor Sysoev890fc962003-07-20 21:15:59 +000012static void *ngx_http_core_create_main_conf(ngx_conf_t *cf);
13static char *ngx_http_core_init_main_conf(ngx_conf_t *cf, void *conf);
14static void *ngx_http_core_create_srv_conf(ngx_conf_t *cf);
15static char *ngx_http_core_merge_srv_conf(ngx_conf_t *cf,
Igor Sysoeva9830112003-05-19 16:39:14 +000016 void *parent, void *child);
Igor Sysoev890fc962003-07-20 21:15:59 +000017static void *ngx_http_core_create_loc_conf(ngx_conf_t *cf);
18static char *ngx_http_core_merge_loc_conf(ngx_conf_t *cf,
Igor Sysoeve2a31542003-04-08 15:40:10 +000019 void *parent, void *child);
Igor Sysoevdc479b42003-03-20 16:09:44 +000020
Igor Sysoev340b03b2003-07-04 15:10:33 +000021static int ngx_http_core_init(ngx_cycle_t *cycle);
Igor Sysoev6253ca12003-05-27 12:18:54 +000022static char *ngx_server_block(ngx_conf_t *cf, ngx_command_t *cmd, void *dummy);
Igor Sysoev13933252003-05-29 13:02:09 +000023static int ngx_cmp_locations(const void *first, const void *second);
Igor Sysoevdc479b42003-03-20 16:09:44 +000024static char *ngx_location_block(ngx_conf_t *cf, ngx_command_t *cmd,
Igor Sysoev890fc962003-07-20 21:15:59 +000025 void *dummy);
Igor Sysoev6253ca12003-05-27 12:18:54 +000026static char *ngx_types_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
Igor Sysoevaa3436c2003-05-30 14:27:59 +000027static char *ngx_set_type(ngx_conf_t *cf, ngx_command_t *dummy, void *conf);
Igor Sysoev6253ca12003-05-27 12:18:54 +000028static char *ngx_set_listen(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
Igor Sysoev13933252003-05-29 13:02:09 +000029static char *ngx_set_server_name(ngx_conf_t *cf, ngx_command_t *cmd,
Igor Sysoev890fc962003-07-20 21:15:59 +000030 void *conf);
Igor Sysoev74e95c22003-11-09 20:03:38 +000031static char *ngx_set_error_page(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
Igor Sysoev890fc962003-07-20 21:15:59 +000032static char *ngx_set_error_log(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
Igor Sysoev4e9393a2003-01-09 05:36:00 +000033
Igor Sysoevb5faed22003-10-29 08:30:44 +000034static char *ngx_http_lowat_check(ngx_conf_t *cf, void *post, void *data);
35
36static ngx_conf_post_t ngx_http_lowat_post = { ngx_http_lowat_check } ;
37
Igor Sysoev4e9393a2003-01-09 05:36:00 +000038
39static ngx_command_t ngx_http_core_commands[] = {
40
41 {ngx_string("server"),
42 NGX_HTTP_MAIN_CONF|NGX_CONF_BLOCK|NGX_CONF_NOARGS,
43 ngx_server_block,
44 0,
Igor Sysoev6ddfbf02003-05-15 15:42:53 +000045 0,
Igor Sysoev13933252003-05-29 13:02:09 +000046 NULL},
Igor Sysoev4e9393a2003-01-09 05:36:00 +000047
Igor Sysoev6a644c62003-03-04 06:33:48 +000048 {ngx_string("connection_pool_size"),
Igor Sysoev239baac2003-06-11 15:28:34 +000049 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1,
Igor Sysoev6a644c62003-03-04 06:33:48 +000050 ngx_conf_set_size_slot,
Igor Sysoev239baac2003-06-11 15:28:34 +000051 NGX_HTTP_SRV_CONF_OFFSET,
52 offsetof(ngx_http_core_srv_conf_t, connection_pool_size),
Igor Sysoev6ddfbf02003-05-15 15:42:53 +000053 NULL},
Igor Sysoev6a644c62003-03-04 06:33:48 +000054
Igor Sysoev187fcd82003-05-23 11:53:01 +000055 {ngx_string("post_accept_timeout"),
Igor Sysoev239baac2003-06-11 15:28:34 +000056 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1,
Igor Sysoev3d09c8d2003-05-06 17:03:16 +000057 ngx_conf_set_msec_slot,
Igor Sysoev239baac2003-06-11 15:28:34 +000058 NGX_HTTP_SRV_CONF_OFFSET,
59 offsetof(ngx_http_core_srv_conf_t, post_accept_timeout),
Igor Sysoev187fcd82003-05-23 11:53:01 +000060 NULL},
61
62 {ngx_string("request_pool_size"),
63 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1,
64 ngx_conf_set_size_slot,
65 NGX_HTTP_SRV_CONF_OFFSET,
66 offsetof(ngx_http_core_srv_conf_t, request_pool_size),
67 NULL},
68
69 {ngx_string("client_header_timeout"),
70 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1,
71 ngx_conf_set_msec_slot,
72 NGX_HTTP_SRV_CONF_OFFSET,
73 offsetof(ngx_http_core_srv_conf_t, client_header_timeout),
Igor Sysoev6ddfbf02003-05-15 15:42:53 +000074 NULL},
Igor Sysoev6a644c62003-03-04 06:33:48 +000075
76 {ngx_string("client_header_buffer_size"),
Igor Sysoev187fcd82003-05-23 11:53:01 +000077 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1,
Igor Sysoev6a644c62003-03-04 06:33:48 +000078 ngx_conf_set_size_slot,
Igor Sysoev187fcd82003-05-23 11:53:01 +000079 NGX_HTTP_SRV_CONF_OFFSET,
80 offsetof(ngx_http_core_srv_conf_t, client_header_buffer_size),
Igor Sysoev6ddfbf02003-05-15 15:42:53 +000081 NULL},
Igor Sysoev6a644c62003-03-04 06:33:48 +000082
83 {ngx_string("large_client_header"),
Igor Sysoev187fcd82003-05-23 11:53:01 +000084 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_FLAG,
Igor Sysoev6a644c62003-03-04 06:33:48 +000085 ngx_conf_set_flag_slot,
Igor Sysoev187fcd82003-05-23 11:53:01 +000086 NGX_HTTP_SRV_CONF_OFFSET,
87 offsetof(ngx_http_core_srv_conf_t, large_client_header),
Igor Sysoev6ddfbf02003-05-15 15:42:53 +000088 NULL},
Igor Sysoev6a644c62003-03-04 06:33:48 +000089
Igor Sysoev4e9393a2003-01-09 05:36:00 +000090 {ngx_string("location"),
91 NGX_HTTP_SRV_CONF|NGX_CONF_BLOCK|NGX_CONF_TAKE1,
92 ngx_location_block,
Igor Sysoeve2a31542003-04-08 15:40:10 +000093 NGX_HTTP_SRV_CONF_OFFSET,
Igor Sysoev6ddfbf02003-05-15 15:42:53 +000094 0,
95 NULL},
Igor Sysoev4e9393a2003-01-09 05:36:00 +000096
Igor Sysoeva19a85e2003-01-28 15:56:37 +000097 {ngx_string("listen"),
Igor Sysoev7578ec92003-06-02 15:24:30 +000098#if 0
Igor Sysoeva9830112003-05-19 16:39:14 +000099 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1,
Igor Sysoev7578ec92003-06-02 15:24:30 +0000100#else
101 NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1,
102#endif
Igor Sysoeva19a85e2003-01-28 15:56:37 +0000103 ngx_set_listen,
Igor Sysoeve2a31542003-04-08 15:40:10 +0000104 NGX_HTTP_SRV_CONF_OFFSET,
Igor Sysoev6ddfbf02003-05-15 15:42:53 +0000105 0,
106 NULL},
Igor Sysoeva19a85e2003-01-28 15:56:37 +0000107
Igor Sysoev13933252003-05-29 13:02:09 +0000108 {ngx_string("server_name"),
Igor Sysoev7578ec92003-06-02 15:24:30 +0000109 NGX_HTTP_SRV_CONF|NGX_CONF_1MORE,
Igor Sysoev13933252003-05-29 13:02:09 +0000110 ngx_set_server_name,
111 NGX_HTTP_SRV_CONF_OFFSET,
112 0,
113 NULL},
114
Igor Sysoev79a80482003-05-14 17:13:13 +0000115 {ngx_string("types"),
Igor Sysoeva9830112003-05-19 16:39:14 +0000116 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF
117 |NGX_CONF_BLOCK|NGX_CONF_NOARGS,
Igor Sysoev79a80482003-05-14 17:13:13 +0000118 ngx_types_block,
119 NGX_HTTP_LOC_CONF_OFFSET,
Igor Sysoev6ddfbf02003-05-15 15:42:53 +0000120 0,
121 NULL},
Igor Sysoev79a80482003-05-14 17:13:13 +0000122
Igor Sysoev6253ca12003-05-27 12:18:54 +0000123 {ngx_string("default_type"),
124 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
125 ngx_conf_set_str_slot,
126 NGX_HTTP_LOC_CONF_OFFSET,
127 offsetof(ngx_http_core_loc_conf_t, default_type),
128 NULL},
129
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000130 {ngx_string("root"),
Igor Sysoeva9830112003-05-19 16:39:14 +0000131 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000132 ngx_conf_set_str_slot,
133 NGX_HTTP_LOC_CONF_OFFSET,
Igor Sysoev6ddfbf02003-05-15 15:42:53 +0000134 offsetof(ngx_http_core_loc_conf_t, doc_root),
135 NULL},
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000136
Igor Sysoev2b0c76c2003-10-27 21:01:00 +0000137 {ngx_string("client_body_timeout"),
138 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
139 ngx_conf_set_msec_slot,
140 NGX_HTTP_LOC_CONF_OFFSET,
141 offsetof(ngx_http_core_loc_conf_t, client_body_timeout),
142 NULL},
143
Igor Sysoev5bf3d252003-10-22 07:05:29 +0000144 {ngx_string("sendfile"),
Igor Sysoevab0c4f52003-10-28 15:45:41 +0000145 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_FLAG,
Igor Sysoev5bf3d252003-10-22 07:05:29 +0000146 ngx_conf_set_flag_slot,
147 NGX_HTTP_LOC_CONF_OFFSET,
148 offsetof(ngx_http_core_loc_conf_t, sendfile),
149 NULL},
150
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000151 {ngx_string("send_timeout"),
Igor Sysoeva9830112003-05-19 16:39:14 +0000152 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
Igor Sysoev3d09c8d2003-05-06 17:03:16 +0000153 ngx_conf_set_msec_slot,
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000154 NGX_HTTP_LOC_CONF_OFFSET,
Igor Sysoev6ddfbf02003-05-15 15:42:53 +0000155 offsetof(ngx_http_core_loc_conf_t, send_timeout),
156 NULL},
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000157
Igor Sysoevb5faed22003-10-29 08:30:44 +0000158 {ngx_string("send_lowat"),
159 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
160 ngx_conf_set_size_slot,
161 NGX_HTTP_LOC_CONF_OFFSET,
162 offsetof(ngx_http_core_loc_conf_t, send_lowat),
163 &ngx_http_lowat_post},
164
Igor Sysoevfa73aac2003-05-21 13:28:21 +0000165 {ngx_string("keepalive_timeout"),
166 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
167 ngx_conf_set_msec_slot,
168 NGX_HTTP_LOC_CONF_OFFSET,
169 offsetof(ngx_http_core_loc_conf_t, keepalive_timeout),
170 NULL},
171
Igor Sysoevb7387572003-03-11 20:38:13 +0000172 {ngx_string("lingering_time"),
Igor Sysoeva9830112003-05-19 16:39:14 +0000173 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
Igor Sysoev3d09c8d2003-05-06 17:03:16 +0000174 ngx_conf_set_msec_slot,
Igor Sysoevb7387572003-03-11 20:38:13 +0000175 NGX_HTTP_LOC_CONF_OFFSET,
Igor Sysoev6ddfbf02003-05-15 15:42:53 +0000176 offsetof(ngx_http_core_loc_conf_t, lingering_time),
177 NULL},
Igor Sysoevb7387572003-03-11 20:38:13 +0000178
179 {ngx_string("lingering_timeout"),
Igor Sysoeva9830112003-05-19 16:39:14 +0000180 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
Igor Sysoev3d09c8d2003-05-06 17:03:16 +0000181 ngx_conf_set_msec_slot,
Igor Sysoevb7387572003-03-11 20:38:13 +0000182 NGX_HTTP_LOC_CONF_OFFSET,
Igor Sysoev6ddfbf02003-05-15 15:42:53 +0000183 offsetof(ngx_http_core_loc_conf_t, lingering_timeout),
184 NULL},
Igor Sysoevb7387572003-03-11 20:38:13 +0000185
Igor Sysoev12b4b002003-10-24 06:53:41 +0000186 {ngx_string("msie_padding"),
Igor Sysoevab0c4f52003-10-28 15:45:41 +0000187 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_FLAG,
Igor Sysoev12b4b002003-10-24 06:53:41 +0000188 ngx_conf_set_flag_slot,
189 NGX_HTTP_LOC_CONF_OFFSET,
190 offsetof(ngx_http_core_loc_conf_t, msie_padding),
191 NULL},
192
Igor Sysoev74e95c22003-11-09 20:03:38 +0000193 {ngx_string("error_page"),
194 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_2MORE,
195 ngx_set_error_page,
196 NGX_HTTP_LOC_CONF_OFFSET,
197 0,
198 NULL},
199
Igor Sysoev890fc962003-07-20 21:15:59 +0000200 {ngx_string("error_log"),
201 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
202 ngx_set_error_log,
203 NGX_HTTP_LOC_CONF_OFFSET,
204 0,
205 NULL},
206
Igor Sysoev6253ca12003-05-27 12:18:54 +0000207 ngx_null_command
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000208};
209
210
211ngx_http_module_t ngx_http_core_module_ctx = {
Igor Sysoev78329332003-11-10 17:17:31 +0000212 NULL, /* pre conf */
213
Igor Sysoeva9830112003-05-19 16:39:14 +0000214 ngx_http_core_create_main_conf, /* create main configuration */
215 ngx_http_core_init_main_conf, /* init main configuration */
Igor Sysoevdc479b42003-03-20 16:09:44 +0000216
Igor Sysoeva9830112003-05-19 16:39:14 +0000217 ngx_http_core_create_srv_conf, /* create server configuration */
218 ngx_http_core_merge_srv_conf, /* merge server configuration */
219
220 ngx_http_core_create_loc_conf, /* create location configuration */
221 ngx_http_core_merge_loc_conf /* merge location configuration */
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000222};
223
224
225ngx_module_t ngx_http_core_module = {
Igor Sysoev6253ca12003-05-27 12:18:54 +0000226 NGX_MODULE,
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000227 &ngx_http_core_module_ctx, /* module context */
228 ngx_http_core_commands, /* module directives */
Igor Sysoev6253ca12003-05-27 12:18:54 +0000229 NGX_HTTP_MODULE, /* module type */
Igor Sysoev96c56c92003-07-02 14:41:17 +0000230 ngx_http_core_init, /* init module */
Igor Sysoev340b03b2003-07-04 15:10:33 +0000231 NULL /* init child */
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000232};
233
234
Igor Sysoev6ddfbf02003-05-15 15:42:53 +0000235void ngx_http_handler(ngx_http_request_t *r)
236{
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000237 ngx_http_log_ctx_t *lcx;
Igor Sysoev6ddfbf02003-05-15 15:42:53 +0000238
239 r->connection->unexpected_eof = 0;
240
Igor Sysoev7578ec92003-06-02 15:24:30 +0000241 lcx = r->connection->log->data;
242 lcx->action = NULL;
243
Igor Sysoev419f9ac2003-10-21 16:49:56 +0000244 switch (r->headers_in.connection_type) {
245 case 0:
246 if (r->http_version > NGX_HTTP_VERSION_10) {
247 r->keepalive = 1;
248 } else {
Igor Sysoev9760a132003-10-21 07:47:21 +0000249 r->keepalive = 0;
250 }
Igor Sysoev419f9ac2003-10-21 16:49:56 +0000251 break;
252
253 case NGX_HTTP_CONNECTION_CLOSE:
254 r->keepalive = 0;
255 break;
256
257 case NGX_HTTP_CONNECTION_KEEP_ALIVE:
258 r->keepalive = 1;
259 break;
Igor Sysoev9760a132003-10-21 07:47:21 +0000260 }
261
Igor Sysoev10fc9ef2003-10-27 08:53:49 +0000262#if 0
Igor Sysoevdc9dd432003-10-22 16:38:26 +0000263 /* TEST STUB */ r->http_version = NGX_HTTP_VERSION_10;
Igor Sysoev9760a132003-10-21 07:47:21 +0000264 /* TEST STUB */ r->keepalive = 0;
265#endif
Igor Sysoev6ddfbf02003-05-15 15:42:53 +0000266
267 if (r->headers_in.content_length_n > 0) {
268 r->lingering_close = 1;
Igor Sysoev9760a132003-10-21 07:47:21 +0000269
270 } else {
271 r->lingering_close = 0;
Igor Sysoev6ddfbf02003-05-15 15:42:53 +0000272 }
273
Igor Sysoev9760a132003-10-21 07:47:21 +0000274#if 0
Igor Sysoev6ddfbf02003-05-15 15:42:53 +0000275 /* TEST STUB */ r->lingering_close = 1;
Igor Sysoev9760a132003-10-21 07:47:21 +0000276#endif
Igor Sysoev6ddfbf02003-05-15 15:42:53 +0000277
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000278 r->connection->write->event_handler = ngx_http_phase_event_handler;
Igor Sysoev6ddfbf02003-05-15 15:42:53 +0000279
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000280 ngx_http_run_phases(r);
281
282 return;
283}
Igor Sysoeve2a31542003-04-08 15:40:10 +0000284
285
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000286static void ngx_http_phase_event_handler(ngx_event_t *ev)
287{
288 ngx_connection_t *c;
289 ngx_http_request_t *r;
290
291 c = ev->data;
292 r = c->data;
293
Igor Sysoev0a280a32003-10-12 16:49:16 +0000294 ngx_log_debug(ev->log, "phase event handler");
295
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000296 ngx_http_run_phases(r);
297
298 return;
299}
300
301
302static void ngx_http_run_phases(ngx_http_request_t *r)
303{
304 int rc;
305 ngx_http_handler_pt *h;
306 ngx_http_core_main_conf_t *cmcf;
307
308 cmcf = ngx_http_get_module_main_conf(r, ngx_http_core_module);
309
310 rc = NGX_DECLINED;
311
312 for (/* void */; r->phase < NGX_HTTP_LAST_PHASE; r->phase++) {
313
314 h = cmcf->phases[r->phase].handlers.elts;
315 for (r->phase_handler = cmcf->phases[r->phase].handlers.nelts - 1;
316 r->phase_handler >= 0;
317 r->phase_handler--)
318 {
319 rc = h[r->phase_handler](r);
320
Igor Sysoev9760a132003-10-21 07:47:21 +0000321 if (rc == NGX_DONE) {
322 return;
323 }
324
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000325 if (rc == NGX_DECLINED) {
326 continue;
327 }
328
329 if (rc == NGX_AGAIN) {
330 return;
331 }
332
333 if (rc >= NGX_HTTP_SPECIAL_RESPONSE) {
334 ngx_http_finalize_request(r, rc);
335 return;
336 }
337
338 if (rc == NGX_OK && cmcf->phases[r->phase].type == NGX_OK) {
339 break;
340 }
341 }
342
343 if (cmcf->phases[r->phase].post_handler) {
344 rc = cmcf->phases[r->phase].post_handler(r);
345
346 if (rc == NGX_AGAIN) {
347 return;
348 }
349
350 if (rc == NGX_ERROR || rc >= NGX_HTTP_SPECIAL_RESPONSE) {
351 ngx_http_finalize_request(r, rc);
352 return;
353 }
354 }
355 }
356
357 if (r->content_handler) {
Igor Sysoev160d7742003-11-19 16:26:41 +0000358 r->connection->write->event_handler = ngx_http_empty_handler;
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000359 rc = r->content_handler(r);
360 ngx_http_finalize_request(r, rc);
361 return;
362 }
363
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000364 ngx_http_finalize_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR);
365 return;
366}
367
368
369int ngx_http_find_location_config(ngx_http_request_t *r)
370{
Igor Sysoev419f9ac2003-10-21 16:49:56 +0000371 int i, rc;
Igor Sysoev1b138ed2003-11-18 21:34:08 +0000372 ngx_str_t *auto_redirect;
Igor Sysoev419f9ac2003-10-21 16:49:56 +0000373 ngx_http_core_loc_conf_t *clcf, **clcfp;
374 ngx_http_core_srv_conf_t *cscf;
Igor Sysoeve2a31542003-04-08 15:40:10 +0000375
Igor Sysoev6253ca12003-05-27 12:18:54 +0000376 cscf = ngx_http_get_module_srv_conf(r, ngx_http_core_module);
Igor Sysoev1b138ed2003-11-18 21:34:08 +0000377 auto_redirect = NULL;
Igor Sysoeve2a31542003-04-08 15:40:10 +0000378
Igor Sysoev6253ca12003-05-27 12:18:54 +0000379 clcfp = cscf->locations.elts;
380 for (i = 0; i < cscf->locations.nelts; i++) {
Igor Sysoeve2a31542003-04-08 15:40:10 +0000381#if 0
Igor Sysoev6253ca12003-05-27 12:18:54 +0000382ngx_log_debug(r->connection->log, "trans: %s" _ clcfp[i]->name.data);
Igor Sysoeve2a31542003-04-08 15:40:10 +0000383#endif
Igor Sysoev1b138ed2003-11-18 21:34:08 +0000384 if (clcfp[i]->auto_redirect
385 && r->uri.len == clcfp[i]->name.len - 1
386 && ngx_strncmp(r->uri.data, clcfp[i]->name.data,
387 clcfp[i]->name.len - 1) == 0)
388 {
389 auto_redirect = &clcfp[i]->name;
390 continue;
391 }
392
Igor Sysoev890fc962003-07-20 21:15:59 +0000393 if (r->uri.len < clcfp[i]->name.len) {
394 continue;
395 }
Igor Sysoeve2a31542003-04-08 15:40:10 +0000396
Igor Sysoev65977492003-11-02 22:56:18 +0000397 rc = ngx_strncmp(r->uri.data, clcfp[i]->name.data, clcfp[i]->name.len);
Igor Sysoeve2a31542003-04-08 15:40:10 +0000398
Igor Sysoev890fc962003-07-20 21:15:59 +0000399 if (rc < 0) {
Igor Sysoev1b138ed2003-11-18 21:34:08 +0000400 /* locations are lexicographically sorted */
Igor Sysoev890fc962003-07-20 21:15:59 +0000401 break;
402 }
Igor Sysoeve2a31542003-04-08 15:40:10 +0000403
Igor Sysoev890fc962003-07-20 21:15:59 +0000404 if (rc == 0) {
405 r->loc_conf = clcfp[i]->loc_conf;
406 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
407 r->connection->log->file = clcf->err_log->file;
408 r->connection->log->log_level = clcf->err_log->log_level;
409 }
Igor Sysoeve2a31542003-04-08 15:40:10 +0000410 }
411
Igor Sysoev419f9ac2003-10-21 16:49:56 +0000412 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
413
Igor Sysoev5bf3d252003-10-22 07:05:29 +0000414 if (!(ngx_io.flags & NGX_IO_SENDFILE) || !clcf->sendfile) {
415 r->sendfile = 0;
416
417 } else {
418 r->sendfile = 1;
419 }
420
Igor Sysoev1b138ed2003-11-18 21:34:08 +0000421 if (auto_redirect) {
422 if (!(r->headers_out.location =
423 ngx_http_add_header(&r->headers_out, ngx_http_headers_out)))
424 {
425 return NGX_HTTP_INTERNAL_SERVER_ERROR;
426 }
427
428#if 0
429 r->headers_out.location->key.len = 8;
430 r->headers_out.location->key.data = "Location";
431#endif
432 r->headers_out.location->value = *auto_redirect;
433
434 return NGX_HTTP_MOVED_PERMANENTLY;
435 }
436
Igor Sysoev6253ca12003-05-27 12:18:54 +0000437 if (clcf->handler) {
Igor Sysoevd404c972003-10-16 20:19:16 +0000438 /*
439 * if the location already has content handler then skip
440 * the translation phase
441 */
442
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000443 r->content_handler = clcf->handler;
Igor Sysoevd404c972003-10-16 20:19:16 +0000444 r->phase++;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000445 }
446
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000447 return NGX_OK;
448}
449
450
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000451int ngx_http_send_header(ngx_http_request_t *r)
452{
Igor Sysoev10fc9ef2003-10-27 08:53:49 +0000453 if (r->main) {
454 return NGX_OK;
455 }
456
Igor Sysoev27c30f92003-11-11 18:13:43 +0000457 if (r->err_ctx) {
Igor Sysoevd59a0472003-11-10 21:09:22 +0000458 r->headers_out.status = r->err_status;
459 r->headers_out.status_line.len = 0;
460 }
461
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000462 return (*ngx_http_top_header_filter)(r);
463}
464
465
466int ngx_http_redirect(ngx_http_request_t *r, int redirect)
467{
468 /* STUB */
469
470 /* log request */
471
Igor Sysoevd581fd52003-05-13 16:02:32 +0000472 ngx_http_close_request(r, 0);
473 return NGX_OK;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000474}
475
476
Igor Sysoev6253ca12003-05-27 12:18:54 +0000477int ngx_http_error(ngx_http_request_t *r, int error)
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000478{
479 /* STUB */
480 ngx_log_debug(r->connection->log, "http error: %d" _ error);
481
482 /* log request */
483
Igor Sysoevdc479b42003-03-20 16:09:44 +0000484 ngx_http_special_response_handler(r, error);
Igor Sysoevd581fd52003-05-13 16:02:32 +0000485 ngx_http_close_request(r, 0);
486 return NGX_OK;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000487}
488
489
Igor Sysoev13933252003-05-29 13:02:09 +0000490int ngx_http_internal_redirect(ngx_http_request_t *r,
491 ngx_str_t *uri, ngx_str_t *args)
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000492{
Igor Sysoev13933252003-05-29 13:02:09 +0000493 int i;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000494
Igor Sysoev13933252003-05-29 13:02:09 +0000495 ngx_log_debug(r->connection->log, "internal redirect: '%s'" _ uri->data);
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000496
Igor Sysoev13933252003-05-29 13:02:09 +0000497 r->uri.len = uri->len;
498 r->uri.data = uri->data;
499
500 if (args) {
501 r->args.len = args->len;
502 r->args.data = args->data;
503 }
504
505 r->exten.len = 0;
506 r->exten.data = NULL;
507
508 for (i = uri->len - 1; i > 1; i--) {
509 if (uri->data[i] == '.' && uri->data[i - 1] != '/') {
510 r->exten.len = uri->len - i - 1;
511
512 if (r->exten.len > 0) {
513 ngx_test_null(r->exten.data,
514 ngx_palloc(r->pool, r->exten.len + 1),
515 NGX_HTTP_INTERNAL_SERVER_ERROR);
516
517 ngx_cpystrn(r->exten.data, &uri->data[i + 1], r->exten.len + 1);
518 }
519
520 break;
521
522 } else if (uri->data[i] == '/') {
523 break;
524 }
525 }
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000526
Igor Sysoev27c30f92003-11-11 18:13:43 +0000527 if (r->err_ctx) {
Igor Sysoevd59a0472003-11-10 21:09:22 +0000528
Igor Sysoev27c30f92003-11-11 18:13:43 +0000529 /* allocate the new modules contexts */
530
Igor Sysoevd59a0472003-11-10 21:09:22 +0000531 r->ctx = ngx_pcalloc(r->pool, sizeof(void *) * ngx_http_max_module);
532 if (r->ctx == NULL) {
533 return NGX_HTTP_INTERNAL_SERVER_ERROR;
534 }
535
536 } else {
Igor Sysoev27c30f92003-11-11 18:13:43 +0000537
538 /* clear the modules contexts */
539
Igor Sysoevd59a0472003-11-10 21:09:22 +0000540 ngx_memzero(r->ctx, sizeof(void *) * ngx_http_max_module);
541 }
Igor Sysoev0a280a32003-10-12 16:49:16 +0000542
543 r->phase = 0;
544 r->phase_handler = 0;
545
Igor Sysoev79a80482003-05-14 17:13:13 +0000546 ngx_http_handler(r);
Igor Sysoev13933252003-05-29 13:02:09 +0000547
Igor Sysoev9760a132003-10-21 07:47:21 +0000548 return NGX_DONE;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000549}
550
551
Igor Sysoev0a280a32003-10-12 16:49:16 +0000552#if 1 /* STUB: test the delay http handler */
553
554int ngx_http_delay_handler(ngx_http_request_t *r)
555{
556 static int on;
557
558 if (on++ == 0) {
559 ngx_log_debug(r->connection->log, "SET http delay");
560 ngx_add_timer(r->connection->write, 10000);
561 return NGX_AGAIN;
562 }
563
564 r->connection->write->timedout = 0;
565 ngx_log_debug(r->connection->log, "RESET http delay");
566 return NGX_DECLINED;
567}
568
569#endif
570
571
Igor Sysoev340b03b2003-07-04 15:10:33 +0000572static int ngx_http_core_init(ngx_cycle_t *cycle)
Igor Sysoevdc479b42003-03-20 16:09:44 +0000573{
Igor Sysoevd404c972003-10-16 20:19:16 +0000574#if 0
Igor Sysoev9d9f58f2003-07-02 18:51:41 +0000575 ngx_http_handler_pt *h;
Igor Sysoevd404c972003-10-16 20:19:16 +0000576#endif
Igor Sysoev9d9f58f2003-07-02 18:51:41 +0000577 ngx_http_conf_ctx_t *ctx;
578 ngx_http_core_main_conf_t *cmcf;
Igor Sysoevdc479b42003-03-20 16:09:44 +0000579
Igor Sysoev9d9f58f2003-07-02 18:51:41 +0000580 ctx = (ngx_http_conf_ctx_t *) cycle->conf_ctx[ngx_http_module.index];
581 cmcf = ctx->main_conf[ngx_http_core_module.ctx_index];
582
Igor Sysoev0a280a32003-10-12 16:49:16 +0000583#if 0
584 ngx_test_null(h, ngx_push_array(
585 &cmcf->phases[NGX_HTTP_TRANSLATE_PHASE].handlers),
586 NGX_ERROR);
587 *h = ngx_http_delay_handler;
588#endif
589
Igor Sysoevdc479b42003-03-20 16:09:44 +0000590 return NGX_OK;
591}
592
593
Igor Sysoev6253ca12003-05-27 12:18:54 +0000594static char *ngx_server_block(ngx_conf_t *cf, ngx_command_t *cmd, void *dummy)
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000595{
Igor Sysoev1c13c662003-05-20 15:37:55 +0000596 int m;
Igor Sysoeva9830112003-05-19 16:39:14 +0000597 char *rv;
598 ngx_http_module_t *module;
599 ngx_conf_t pcf;
600 ngx_http_conf_ctx_t *ctx, *hctx, *pctx;
601 ngx_http_core_main_conf_t *cmcf;
602 ngx_http_core_srv_conf_t *cscf, **cscfp;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000603
604 ngx_test_null(ctx,
605 ngx_pcalloc(cf->pool, sizeof(ngx_http_conf_ctx_t)),
606 NGX_CONF_ERROR);
607
Igor Sysoeva9830112003-05-19 16:39:14 +0000608 hctx = (ngx_http_conf_ctx_t *) cf->ctx;
609 ctx->main_conf = hctx->main_conf;
Igor Sysoevbb4ec5c2003-05-16 15:27:48 +0000610
Igor Sysoeva9830112003-05-19 16:39:14 +0000611 /* the server{}'s srv_conf */
Igor Sysoevbb4ec5c2003-05-16 15:27:48 +0000612
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000613 ngx_test_null(ctx->srv_conf,
614 ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module),
615 NGX_CONF_ERROR);
616
Igor Sysoeva9830112003-05-19 16:39:14 +0000617 /* the server{}'s loc_conf */
Igor Sysoevbb4ec5c2003-05-16 15:27:48 +0000618
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000619 ngx_test_null(ctx->loc_conf,
620 ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module),
621 NGX_CONF_ERROR);
622
Igor Sysoev1c13c662003-05-20 15:37:55 +0000623 for (m = 0; ngx_modules[m]; m++) {
Igor Sysoev6253ca12003-05-27 12:18:54 +0000624 if (ngx_modules[m]->type != NGX_HTTP_MODULE) {
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000625 continue;
626 }
627
Igor Sysoev6253ca12003-05-27 12:18:54 +0000628 module = ngx_modules[m]->ctx;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000629
630 if (module->create_srv_conf) {
Igor Sysoev6253ca12003-05-27 12:18:54 +0000631 ngx_test_null(ctx->srv_conf[ngx_modules[m]->ctx_index],
Igor Sysoev890fc962003-07-20 21:15:59 +0000632 module->create_srv_conf(cf),
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000633 NGX_CONF_ERROR);
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000634 }
635
636 if (module->create_loc_conf) {
Igor Sysoev6253ca12003-05-27 12:18:54 +0000637 ngx_test_null(ctx->loc_conf[ngx_modules[m]->ctx_index],
Igor Sysoev890fc962003-07-20 21:15:59 +0000638 module->create_loc_conf(cf),
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000639 NGX_CONF_ERROR);
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000640 }
641 }
642
Igor Sysoeva9830112003-05-19 16:39:14 +0000643 /* create links of the srv_conf's */
644
Igor Sysoev6253ca12003-05-27 12:18:54 +0000645 cscf = ctx->srv_conf[ngx_http_core_module.ctx_index];
Igor Sysoeva9830112003-05-19 16:39:14 +0000646 cscf->ctx = ctx;
647
Igor Sysoev6253ca12003-05-27 12:18:54 +0000648 cmcf = ctx->main_conf[ngx_http_core_module.ctx_index];
Igor Sysoeva9830112003-05-19 16:39:14 +0000649 ngx_test_null(cscfp, ngx_push_array(&cmcf->servers), NGX_CONF_ERROR);
650 *cscfp = cscf;
651
652 /* parse inside server{} */
653
Igor Sysoev79a80482003-05-14 17:13:13 +0000654 pcf = *cf;
655 pctx = cf->ctx;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000656 cf->ctx = ctx;
Igor Sysoev79a80482003-05-14 17:13:13 +0000657 cf->cmd_type = NGX_HTTP_SRV_CONF;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000658 rv = ngx_conf_parse(cf, NULL);
Igor Sysoev79a80482003-05-14 17:13:13 +0000659 *cf = pcf;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000660
Igor Sysoev13933252003-05-29 13:02:09 +0000661 if (rv != NGX_CONF_OK) {
662 return rv;
663 }
664
Igor Sysoevd9d0ca12003-11-21 06:30:49 +0000665 ngx_qsort(cscf->locations.elts, (size_t) cscf->locations.nelts,
Igor Sysoev13933252003-05-29 13:02:09 +0000666 sizeof(void *), ngx_cmp_locations);
667
Igor Sysoeva9830112003-05-19 16:39:14 +0000668 return rv;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000669}
670
671
Igor Sysoev13933252003-05-29 13:02:09 +0000672static int ngx_cmp_locations(const void *first, const void *second)
673{
674 ngx_http_core_loc_conf_t *one = *(ngx_http_core_loc_conf_t **) first;
675 ngx_http_core_loc_conf_t *two = *(ngx_http_core_loc_conf_t **) second;
676
677 return ngx_strcmp(one->name.data, two->name.data);
678}
679
680
Igor Sysoev6253ca12003-05-27 12:18:54 +0000681static char *ngx_location_block(ngx_conf_t *cf, ngx_command_t *cmd, void *dummy)
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000682{
Igor Sysoev6253ca12003-05-27 12:18:54 +0000683 int m;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000684 char *rv;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000685 ngx_str_t *location;
686 ngx_http_module_t *module;
Igor Sysoev74e95c22003-11-09 20:03:38 +0000687 ngx_conf_t pvcf;
688 ngx_http_conf_ctx_t *ctx, *pvctx;
Igor Sysoeva9830112003-05-19 16:39:14 +0000689 ngx_http_core_srv_conf_t *cscf;
690 ngx_http_core_loc_conf_t *clcf, **clcfp;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000691
692 ngx_test_null(ctx,
693 ngx_pcalloc(cf->pool, sizeof(ngx_http_conf_ctx_t)),
694 NGX_CONF_ERROR);
695
Igor Sysoev74e95c22003-11-09 20:03:38 +0000696 pvctx = (ngx_http_conf_ctx_t *) cf->ctx;
697 ctx->main_conf = pvctx->main_conf;
698 ctx->srv_conf = pvctx->srv_conf;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000699
700 ngx_test_null(ctx->loc_conf,
701 ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module),
702 NGX_CONF_ERROR);
703
Igor Sysoev6253ca12003-05-27 12:18:54 +0000704 for (m = 0; ngx_modules[m]; m++) {
705 if (ngx_modules[m]->type != NGX_HTTP_MODULE) {
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000706 continue;
707 }
708
Igor Sysoev6253ca12003-05-27 12:18:54 +0000709 module = ngx_modules[m]->ctx;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000710
711 if (module->create_loc_conf) {
Igor Sysoev6253ca12003-05-27 12:18:54 +0000712 ngx_test_null(ctx->loc_conf[ngx_modules[m]->ctx_index],
Igor Sysoev890fc962003-07-20 21:15:59 +0000713 module->create_loc_conf(cf),
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000714 NGX_CONF_ERROR);
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000715 }
716 }
717
Igor Sysoev6253ca12003-05-27 12:18:54 +0000718 clcf = ctx->loc_conf[ngx_http_core_module.ctx_index];
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000719 location = (ngx_str_t *) cf->args->elts;
Igor Sysoeva9830112003-05-19 16:39:14 +0000720 clcf->name.len = location[1].len;
721 clcf->name.data = location[1].data;
722 clcf->loc_conf = ctx->loc_conf;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000723
Igor Sysoev6253ca12003-05-27 12:18:54 +0000724 cscf = ctx->srv_conf[ngx_http_core_module.ctx_index];
Igor Sysoeva9830112003-05-19 16:39:14 +0000725 ngx_test_null(clcfp, ngx_push_array(&cscf->locations), NGX_CONF_ERROR);
726 *clcfp = clcf;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000727
Igor Sysoev74e95c22003-11-09 20:03:38 +0000728 pvcf = *cf;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000729 cf->ctx = ctx;
Igor Sysoev79a80482003-05-14 17:13:13 +0000730 cf->cmd_type = NGX_HTTP_LOC_CONF;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000731 rv = ngx_conf_parse(cf, NULL);
Igor Sysoev74e95c22003-11-09 20:03:38 +0000732 *cf = pvcf;
Igor Sysoev79a80482003-05-14 17:13:13 +0000733
734 return rv;
735}
736
737
Igor Sysoevaa3436c2003-05-30 14:27:59 +0000738static char *ngx_types_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
Igor Sysoev79a80482003-05-14 17:13:13 +0000739{
Igor Sysoevaa3436c2003-05-30 14:27:59 +0000740 char *rv;
741 ngx_conf_t pcf;
742
743 pcf = *cf;
744 cf->handler = ngx_set_type;
745 cf->handler_conf = conf;
746 rv = ngx_conf_parse(cf, NULL);
747 *cf = pcf;
748
749 return rv;
750}
751
752
753static char *ngx_set_type(ngx_conf_t *cf, ngx_command_t *dummy, void *conf)
754{
755 ngx_http_core_loc_conf_t *lcf = conf;
Igor Sysoev79a80482003-05-14 17:13:13 +0000756
757 int i, key;
758 ngx_str_t *args;
759 ngx_http_type_t *t;
760
761 if (lcf->types == NULL) {
762 ngx_test_null(lcf->types,
763 ngx_palloc(cf->pool, NGX_HTTP_TYPES_HASH_PRIME
764 * sizeof(ngx_array_t)),
765 NGX_CONF_ERROR);
766
767 for (i = 0; i < NGX_HTTP_TYPES_HASH_PRIME; i++) {
768 ngx_init_array(lcf->types[i], cf->pool, 5, sizeof(ngx_http_type_t),
769 NGX_CONF_ERROR);
770 }
771 }
772
773 args = (ngx_str_t *) cf->args->elts;
774
775 for (i = 1; i < cf->args->nelts; i++) {
776 ngx_http_types_hash_key(key, args[i]);
777
778 ngx_test_null(t, ngx_push_array(&lcf->types[key]), NGX_CONF_ERROR);
779 t->exten.len = args[i].len;
780 t->exten.data = args[i].data;
781 t->type.len = args[0].len;
782 t->type.data = args[0].data;
783 }
784
785 return NGX_CONF_OK;
786}
787
788
Igor Sysoev890fc962003-07-20 21:15:59 +0000789static void *ngx_http_core_create_main_conf(ngx_conf_t *cf)
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000790{
Igor Sysoeva9830112003-05-19 16:39:14 +0000791 ngx_http_core_main_conf_t *cmcf;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000792
Igor Sysoeva9830112003-05-19 16:39:14 +0000793 ngx_test_null(cmcf,
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000794 ngx_pcalloc(cf->pool, sizeof(ngx_http_core_main_conf_t)),
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000795 NGX_CONF_ERROR);
796
Igor Sysoev890fc962003-07-20 21:15:59 +0000797 ngx_init_array(cmcf->servers, cf->pool,
798 5, sizeof(ngx_http_core_srv_conf_t *),
Igor Sysoevad22e012003-01-15 07:02:27 +0000799 NGX_CONF_ERROR);
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000800
Igor Sysoeva9830112003-05-19 16:39:14 +0000801 return cmcf;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000802}
803
804
Igor Sysoev890fc962003-07-20 21:15:59 +0000805static char *ngx_http_core_init_main_conf(ngx_conf_t *cf, void *conf)
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000806{
Igor Sysoev6253ca12003-05-27 12:18:54 +0000807 ngx_http_core_main_conf_t *cmcf = conf;
Igor Sysoeva9830112003-05-19 16:39:14 +0000808
Igor Sysoev239baac2003-06-11 15:28:34 +0000809 /* TODO: remove it if no directives */
Igor Sysoeva9830112003-05-19 16:39:14 +0000810
811 return NGX_CONF_OK;
812}
813
814
Igor Sysoev890fc962003-07-20 21:15:59 +0000815static void *ngx_http_core_create_srv_conf(ngx_conf_t *cf)
Igor Sysoeva9830112003-05-19 16:39:14 +0000816{
817 ngx_http_core_srv_conf_t *cscf;
818
819 ngx_test_null(cscf,
Igor Sysoev890fc962003-07-20 21:15:59 +0000820 ngx_pcalloc(cf->pool, sizeof(ngx_http_core_srv_conf_t)),
Igor Sysoeva9830112003-05-19 16:39:14 +0000821 NGX_CONF_ERROR);
822
Igor Sysoev890fc962003-07-20 21:15:59 +0000823 ngx_init_array(cscf->locations, cf->pool,
824 5, sizeof(void *), NGX_CONF_ERROR);
825 ngx_init_array(cscf->listen, cf->pool, 5, sizeof(ngx_http_listen_t),
Igor Sysoeva9830112003-05-19 16:39:14 +0000826 NGX_CONF_ERROR);
Igor Sysoev890fc962003-07-20 21:15:59 +0000827 ngx_init_array(cscf->server_names, cf->pool,
828 5, sizeof(ngx_http_server_name_t), NGX_CONF_ERROR);
Igor Sysoeva9830112003-05-19 16:39:14 +0000829
Igor Sysoev239baac2003-06-11 15:28:34 +0000830 cscf->connection_pool_size = NGX_CONF_UNSET;
831 cscf->post_accept_timeout = NGX_CONF_UNSET;
Igor Sysoev187fcd82003-05-23 11:53:01 +0000832 cscf->request_pool_size = NGX_CONF_UNSET;
833 cscf->client_header_timeout = NGX_CONF_UNSET;
834 cscf->client_header_buffer_size = NGX_CONF_UNSET;
835 cscf->large_client_header = NGX_CONF_UNSET;
836
Igor Sysoeva9830112003-05-19 16:39:14 +0000837 return cscf;
838}
839
840
Igor Sysoev890fc962003-07-20 21:15:59 +0000841static char *ngx_http_core_merge_srv_conf(ngx_conf_t *cf,
Igor Sysoeva9830112003-05-19 16:39:14 +0000842 void *parent, void *child)
843{
Igor Sysoevaa3436c2003-05-30 14:27:59 +0000844 ngx_http_core_srv_conf_t *prev = parent;
845 ngx_http_core_srv_conf_t *conf = child;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000846
847 ngx_http_listen_t *l;
Igor Sysoevad22e012003-01-15 07:02:27 +0000848 ngx_http_server_name_t *n;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000849
Igor Sysoev7578ec92003-06-02 15:24:30 +0000850 /* TODO: it does not merge, it inits only */
Igor Sysoeva9830112003-05-19 16:39:14 +0000851
852 if (conf->listen.nelts == 0) {
853 ngx_test_null(l, ngx_push_array(&conf->listen), NGX_CONF_ERROR);
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000854 l->addr = INADDR_ANY;
Igor Sysoev1c104622003-06-03 15:42:58 +0000855#if (WIN32)
856 l->port = 80;
857#else
Igor Sysoev7578ec92003-06-02 15:24:30 +0000858 /* STUB: getuid() should be cached */
859 l->port = (getuid() == 0) ? 80 : 8000;
Igor Sysoev1c104622003-06-03 15:42:58 +0000860#endif
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000861 l->family = AF_INET;
862 }
863
Igor Sysoeva9830112003-05-19 16:39:14 +0000864 if (conf->server_names.nelts == 0) {
865 ngx_test_null(n, ngx_push_array(&conf->server_names), NGX_CONF_ERROR);
Igor Sysoev890fc962003-07-20 21:15:59 +0000866 ngx_test_null(n->name.data, ngx_palloc(cf->pool, NGX_MAXHOSTNAMELEN),
Igor Sysoevad22e012003-01-15 07:02:27 +0000867 NGX_CONF_ERROR);
Igor Sysoev13933252003-05-29 13:02:09 +0000868
Igor Sysoevad22e012003-01-15 07:02:27 +0000869 if (gethostname(n->name.data, NGX_MAXHOSTNAMELEN) == -1) {
Igor Sysoev8e1fbe62003-07-18 14:44:05 +0000870 ngx_conf_log_error(NGX_LOG_EMERG, cf, ngx_errno,
871 "gethostname() failed");
872 return NGX_CONF_ERROR;
Igor Sysoevad22e012003-01-15 07:02:27 +0000873 }
Igor Sysoev13933252003-05-29 13:02:09 +0000874
Igor Sysoevad22e012003-01-15 07:02:27 +0000875 n->name.len = ngx_strlen(n->name.data);
876 n->core_srv_conf = conf;
877 }
878
Igor Sysoev239baac2003-06-11 15:28:34 +0000879 ngx_conf_merge_size_value(conf->connection_pool_size,
880 prev->connection_pool_size, 16384);
881 ngx_conf_merge_msec_value(conf->post_accept_timeout,
882 prev->post_accept_timeout, 30000);
Igor Sysoev187fcd82003-05-23 11:53:01 +0000883 ngx_conf_merge_size_value(conf->request_pool_size,
884 prev->request_pool_size, 16384);
885 ngx_conf_merge_msec_value(conf->client_header_timeout,
886 prev->client_header_timeout, 60000);
887 ngx_conf_merge_size_value(conf->client_header_buffer_size,
888 prev->client_header_buffer_size, 1024);
889 ngx_conf_merge_value(conf->large_client_header,
890 prev->large_client_header, 1);
891
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000892 return NGX_CONF_OK;
893}
894
895
Igor Sysoev890fc962003-07-20 21:15:59 +0000896static void *ngx_http_core_create_loc_conf(ngx_conf_t *cf)
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000897{
898 ngx_http_core_loc_conf_t *lcf;
899
900 ngx_test_null(lcf,
Igor Sysoev890fc962003-07-20 21:15:59 +0000901 ngx_pcalloc(cf->pool, sizeof(ngx_http_core_loc_conf_t)),
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000902 NGX_CONF_ERROR);
903
Igor Sysoev6ddfbf02003-05-15 15:42:53 +0000904 /* set by ngx_pcalloc():
Igor Sysoev79a80482003-05-14 17:13:13 +0000905
906 lcf->doc_root.len = 0;
907 lcf->doc_root.data = NULL;
908 lcf->types = NULL;
Igor Sysoev6253ca12003-05-27 12:18:54 +0000909 lcf->default_type.len = 0;
910 lcf->default_type.data = NULL;
Igor Sysoev9d639522003-07-07 06:11:50 +0000911 lcf->err_log = NULL;
Igor Sysoev74e95c22003-11-09 20:03:38 +0000912 lcf->error_pages = NULL;
Igor Sysoev6ddfbf02003-05-15 15:42:53 +0000913
914 */
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000915
Igor Sysoev2b0c76c2003-10-27 21:01:00 +0000916 lcf->client_body_timeout = NGX_CONF_UNSET;
Igor Sysoev5bf3d252003-10-22 07:05:29 +0000917 lcf->sendfile = NGX_CONF_UNSET;
Igor Sysoev79a80482003-05-14 17:13:13 +0000918 lcf->send_timeout = NGX_CONF_UNSET;
Igor Sysoevb5faed22003-10-29 08:30:44 +0000919 lcf->send_lowat = NGX_CONF_UNSET;
Igor Sysoev79a80482003-05-14 17:13:13 +0000920 lcf->discarded_buffer_size = NGX_CONF_UNSET;
Igor Sysoevfa73aac2003-05-21 13:28:21 +0000921 lcf->keepalive_timeout = NGX_CONF_UNSET;
Igor Sysoev79a80482003-05-14 17:13:13 +0000922 lcf->lingering_time = NGX_CONF_UNSET;
923 lcf->lingering_timeout = NGX_CONF_UNSET;
924
Igor Sysoev12b4b002003-10-24 06:53:41 +0000925 lcf->msie_padding = NGX_CONF_UNSET;
926
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000927 return lcf;
928}
Igor Sysoeva19a85e2003-01-28 15:56:37 +0000929
Igor Sysoev79a80482003-05-14 17:13:13 +0000930
931static ngx_http_type_t default_types[] = {
932 { ngx_string("html"), ngx_string("text/html") },
933 { ngx_string("gif"), ngx_string("image/gif") },
934 { ngx_string("jpg"), ngx_string("image/jpeg") },
935 { ngx_null_string, ngx_null_string }
936};
937
938
Igor Sysoev890fc962003-07-20 21:15:59 +0000939static char *ngx_http_core_merge_loc_conf(ngx_conf_t *cf,
Igor Sysoeve2a31542003-04-08 15:40:10 +0000940 void *parent, void *child)
941{
Igor Sysoevaa3436c2003-05-30 14:27:59 +0000942 ngx_http_core_loc_conf_t *prev = parent;
943 ngx_http_core_loc_conf_t *conf = child;
Igor Sysoev79a80482003-05-14 17:13:13 +0000944
945 int i, key;
946 ngx_http_type_t *t;
947
Igor Sysoev7578ec92003-06-02 15:24:30 +0000948 ngx_conf_merge_str_value(conf->doc_root, prev->doc_root, "html");
Igor Sysoev79a80482003-05-14 17:13:13 +0000949
950 if (conf->types == NULL) {
951 if (prev->types) {
952 conf->types = prev->types;
953
954 } else {
955 ngx_test_null(conf->types,
Igor Sysoev890fc962003-07-20 21:15:59 +0000956 ngx_palloc(cf->pool, NGX_HTTP_TYPES_HASH_PRIME
Igor Sysoev79a80482003-05-14 17:13:13 +0000957 * sizeof(ngx_array_t)),
958 NGX_CONF_ERROR);
959
960 for (i = 0; i < NGX_HTTP_TYPES_HASH_PRIME; i++) {
Igor Sysoev890fc962003-07-20 21:15:59 +0000961 ngx_init_array(conf->types[i], cf->pool,
962 5, sizeof(ngx_http_type_t), NGX_CONF_ERROR);
Igor Sysoev79a80482003-05-14 17:13:13 +0000963 }
964
965 for (i = 0; default_types[i].exten.len; i++) {
966 ngx_http_types_hash_key(key, default_types[i].exten);
967
968 ngx_test_null(t, ngx_push_array(&conf->types[key]),
969 NGX_CONF_ERROR);
970 t->exten.len = default_types[i].exten.len;
971 t->exten.data = default_types[i].exten.data;
972 t->type.len = default_types[i].type.len;
973 t->type.data = default_types[i].type.data;
974 }
975 }
976 }
977
Igor Sysoev890fc962003-07-20 21:15:59 +0000978 if (conf->err_log == NULL) {
979 if (prev->err_log) {
980 conf->err_log = prev->err_log;
981 } else {
982 conf->err_log = cf->cycle->log;
983 }
984 }
985
Igor Sysoev74e95c22003-11-09 20:03:38 +0000986 if (conf->error_pages == NULL && prev->error_pages) {
987 conf->error_pages = prev->error_pages;
988 }
989
Igor Sysoev6253ca12003-05-27 12:18:54 +0000990 ngx_conf_merge_str_value(conf->default_type,
991 prev->default_type, "text/plain");
992
Igor Sysoev2b0c76c2003-10-27 21:01:00 +0000993 ngx_conf_merge_msec_value(conf->client_body_timeout,
994 prev->client_body_timeout, 10000);
Igor Sysoev5bf3d252003-10-22 07:05:29 +0000995 ngx_conf_merge_value(conf->sendfile, prev->sendfile, 0);
Igor Sysoeva9830112003-05-19 16:39:14 +0000996 ngx_conf_merge_msec_value(conf->send_timeout, prev->send_timeout, 10000);
Igor Sysoevb5faed22003-10-29 08:30:44 +0000997 ngx_conf_merge_size_value(conf->send_lowat, prev->send_lowat, 0);
Igor Sysoeva9830112003-05-19 16:39:14 +0000998 ngx_conf_merge_size_value(conf->discarded_buffer_size,
999 prev->discarded_buffer_size, 1500);
Igor Sysoev187fcd82003-05-23 11:53:01 +00001000 ngx_conf_merge_msec_value(conf->keepalive_timeout,
1001 prev->keepalive_timeout, 70000);
1002 ngx_conf_merge_msec_value(conf->lingering_time,
1003 prev->lingering_time, 30000);
1004 ngx_conf_merge_msec_value(conf->lingering_timeout,
1005 prev->lingering_timeout, 5000);
Igor Sysoev79a80482003-05-14 17:13:13 +00001006
Igor Sysoev12b4b002003-10-24 06:53:41 +00001007 ngx_conf_merge_value(conf->msie_padding, prev->msie_padding, 1);
1008
Igor Sysoeve2a31542003-04-08 15:40:10 +00001009 return NGX_CONF_OK;
1010}
1011
Igor Sysoev79a80482003-05-14 17:13:13 +00001012
Igor Sysoev6253ca12003-05-27 12:18:54 +00001013static char *ngx_set_listen(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
Igor Sysoeva19a85e2003-01-28 15:56:37 +00001014{
Igor Sysoevaa3436c2003-05-30 14:27:59 +00001015 ngx_http_core_srv_conf_t *scf = conf;
Igor Sysoeva9830112003-05-19 16:39:14 +00001016
Igor Sysoev6ddfbf02003-05-15 15:42:53 +00001017 char *addr;
Igor Sysoev1c13c662003-05-20 15:37:55 +00001018 u_int p;
Igor Sysoev6253ca12003-05-27 12:18:54 +00001019 struct hostent *h;
Igor Sysoeva19a85e2003-01-28 15:56:37 +00001020 ngx_str_t *args;
1021 ngx_http_listen_t *ls;
Igor Sysoeva19a85e2003-01-28 15:56:37 +00001022
Igor Sysoev239baac2003-06-11 15:28:34 +00001023 /* TODO: check duplicate 'listen' directives,
Igor Sysoev13933252003-05-29 13:02:09 +00001024 add resolved name to server names ??? */
Igor Sysoev6ddfbf02003-05-15 15:42:53 +00001025
Igor Sysoeva19a85e2003-01-28 15:56:37 +00001026 ngx_test_null(ls, ngx_push_array(&scf->listen), NGX_CONF_ERROR);
1027
1028 /* AF_INET only */
1029
1030 ls->family = AF_INET;
Igor Sysoeva19a85e2003-01-28 15:56:37 +00001031 ls->flags = 0;
Igor Sysoevfe5cb6b2003-01-29 07:25:51 +00001032 ls->file_name = cf->conf_file->file.name;
Igor Sysoeva19a85e2003-01-28 15:56:37 +00001033 ls->line = cf->conf_file->line;
1034
Igor Sysoev13933252003-05-29 13:02:09 +00001035 args = cf->args->elts;
Igor Sysoev6ddfbf02003-05-15 15:42:53 +00001036 addr = args[1].data;
Igor Sysoeva19a85e2003-01-28 15:56:37 +00001037
Igor Sysoev6ddfbf02003-05-15 15:42:53 +00001038 for (p = 0; p < args[1].len; p++) {
1039 if (addr[p] == ':') {
1040 addr[p++] = '\0';
Igor Sysoev6ddfbf02003-05-15 15:42:53 +00001041 break;
1042 }
1043 }
1044
1045 if (p == args[1].len) {
Igor Sysoev13933252003-05-29 13:02:09 +00001046 /* no ":" in the "listen" */
Igor Sysoev6ddfbf02003-05-15 15:42:53 +00001047 p = 0;
1048 }
1049
1050 ls->port = ngx_atoi(&addr[p], args[1].len - p);
Igor Sysoev13933252003-05-29 13:02:09 +00001051 if (ls->port == NGX_ERROR && p == 0) {
1052
1053 /* "listen host" */
1054 ls->port = 80;
1055
1056 } else if ((ls->port == NGX_ERROR && p != 0) /* "listen host:NONNUMBER" */
1057 || (ls->port < 1 || ls->port > 65536)) { /* "listen 99999" */
1058
Igor Sysoev8e1fbe62003-07-18 14:44:05 +00001059 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
1060 "invalid port \"%s\" in \"%s\" directive, "
1061 "it must be a number between 1 and 65535",
1062 &addr[p], cmd->name.data);
1063
1064 return NGX_CONF_ERROR;
Igor Sysoev13933252003-05-29 13:02:09 +00001065
1066 } else if (p == 0) {
1067 ls->addr = INADDR_ANY;
1068 return NGX_CONF_OK;
Igor Sysoeva19a85e2003-01-28 15:56:37 +00001069 }
1070
Igor Sysoev13933252003-05-29 13:02:09 +00001071 ls->addr = inet_addr(addr);
1072 if (ls->addr == INADDR_NONE) {
1073 h = gethostbyname(addr);
1074
1075 if (h == NULL || h->h_addr_list[0] == NULL) {
Igor Sysoev8e1fbe62003-07-18 14:44:05 +00001076 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
1077 "can not resolve host \"%s\" "
1078 "in \"%s\" directive", addr, cmd->name.data);
1079 return NGX_CONF_ERROR;
Igor Sysoev13933252003-05-29 13:02:09 +00001080 }
1081
1082 ls->addr = *(u_int32_t *)(h->h_addr_list[0]);
1083 }
1084
1085 return NGX_CONF_OK;
1086}
1087
1088
1089static char *ngx_set_server_name(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
1090{
Igor Sysoevaa3436c2003-05-30 14:27:59 +00001091 ngx_http_core_srv_conf_t *scf = conf;
Igor Sysoev13933252003-05-29 13:02:09 +00001092
Igor Sysoevaa3436c2003-05-30 14:27:59 +00001093 int i;
1094 ngx_str_t *value;
Igor Sysoev13933252003-05-29 13:02:09 +00001095 ngx_http_server_name_t *sn;
1096
1097 /* TODO: several names */
1098 /* TODO: warn about duplicate 'server_name' directives */
1099
Igor Sysoevaa3436c2003-05-30 14:27:59 +00001100 value = cf->args->elts;
Igor Sysoev13933252003-05-29 13:02:09 +00001101
Igor Sysoevaa3436c2003-05-30 14:27:59 +00001102 for (i = 1; i < cf->args->nelts; i++) {
1103 if (value[i].len == 0) {
Igor Sysoev8e1fbe62003-07-18 14:44:05 +00001104 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
1105 "server name \"%s\" is invalid "
1106 "in \"%s\" directive",
1107 value[i].data, cmd->name.data);
1108 return NGX_CONF_ERROR;
Igor Sysoevaa3436c2003-05-30 14:27:59 +00001109 }
Igor Sysoev13933252003-05-29 13:02:09 +00001110
Igor Sysoevaa3436c2003-05-30 14:27:59 +00001111 ngx_test_null(sn, ngx_push_array(&scf->server_names), NGX_CONF_ERROR);
1112
1113 sn->name.len = value[i].len;
1114 sn->name.data = value[i].data;
1115 sn->core_srv_conf = scf;
1116 }
Igor Sysoev13933252003-05-29 13:02:09 +00001117
Igor Sysoeva19a85e2003-01-28 15:56:37 +00001118 return NGX_CONF_OK;
1119}
Igor Sysoev9d639522003-07-07 06:11:50 +00001120
1121
Igor Sysoev74e95c22003-11-09 20:03:38 +00001122static char *ngx_set_error_page(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
1123{
1124 ngx_http_core_loc_conf_t *lcf = conf;
1125
1126 int i;
1127 ngx_str_t *value;
1128 ngx_http_err_page_t *err;
1129
1130 if (lcf->error_pages == NULL) {
1131 lcf->error_pages = ngx_create_array(cf->pool, 5,
1132 sizeof(ngx_http_err_page_t));
1133 if (lcf->error_pages == NULL) {
1134 return NGX_CONF_ERROR;
1135 }
1136 }
1137
1138 value = cf->args->elts;
1139
1140 for (i = 1; i < cf->args->nelts - 1; i++) {
1141 ngx_test_null(err, ngx_push_array(lcf->error_pages), NGX_CONF_ERROR);
1142 err->code = ngx_atoi(value[i].data, value[i].len);
1143 if (err->code == NGX_ERROR) {
1144 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
1145 "invalid value \"%s\"", value[i].data);
1146 return NGX_CONF_ERROR;
1147 }
1148
1149 if (err->code < 400 || err->code > 599) {
1150 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
1151 "value \"%s\" must be between 400 and 599",
1152 value[i].data);
1153 return NGX_CONF_ERROR;
1154 }
1155
1156 err->uri = value[cf->args->nelts - 1];
1157 }
1158
1159 return NGX_CONF_OK;
1160}
1161
1162
Igor Sysoev9d639522003-07-07 06:11:50 +00001163static char *ngx_set_error_log(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
1164{
1165 ngx_http_core_loc_conf_t *lcf = conf;
1166
1167 ngx_str_t *value;
1168
1169 value = cf->args->elts;
1170
Igor Sysoevb8c367c2003-07-10 16:26:57 +00001171 ngx_test_null(lcf->err_log,
1172 ngx_log_create_errlog(cf->cycle, &value[1]),
Igor Sysoev9d639522003-07-07 06:11:50 +00001173 NGX_CONF_ERROR);
1174
Igor Sysoev9d639522003-07-07 06:11:50 +00001175 return NGX_CONF_OK;
1176}
Igor Sysoevb5faed22003-10-29 08:30:44 +00001177
1178
1179static char *ngx_http_lowat_check(ngx_conf_t *cf, void *post, void *data)
1180{
Igor Sysoevb5faed22003-10-29 08:30:44 +00001181#if (HAVE_LOWAT_EVENT)
1182
Igor Sysoev74e95c22003-11-09 20:03:38 +00001183 int *np = data;
1184
Igor Sysoevb5faed22003-10-29 08:30:44 +00001185 if (*np >= ngx_freebsd_net_inet_tcp_sendspace) {
1186 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
1187 "\"send_lowat\" must be less than %d "
1188 "(sysctl net.inet.tcp.sendspace)",
1189 ngx_freebsd_net_inet_tcp_sendspace);
1190
1191 return NGX_CONF_ERROR;
1192 }
1193
1194#else
1195
1196 ngx_conf_log_error(NGX_LOG_WARN, cf, 0,
1197 "\"send_lowat\" is not supported, ignored");
1198
1199#endif
1200
1201 return NGX_CONF_OK;
1202}