comparison src/http/modules/ngx_http_index_handler.c @ 24:420dd3f9e703 NGINX_0_1_12

nginx 0.1.12 *) Feature: the %request_length log parameter. *) Bugfix: when using the /dev/poll, select and poll on the platforms, where these methods may do the false reports, there may be the long delay when the request was passed via the keep-alive connection. It may be at least on Solaris when using the /dev/poll. *) Bugfix: the send_lowat directive is ignored on Linux because Linux does not support the SO_SNDLOWAT option.
author Igor Sysoev <http://sysoev.ru>
date Mon, 06 Dec 2004 00:00:00 +0300
parents 8b6db3bda591
children 2879cd3a40cb
comparison
equal deleted inserted replaced
23:5d37652cf26b 24:420dd3f9e703
475 index->len = prev_index[i].len; 475 index->len = prev_index[i].len;
476 index->data = prev_index[i].data; 476 index->data = prev_index[i].data;
477 } 477 }
478 } 478 }
479 479
480 #endif
481
482 if (conf->max_index_len < prev->max_index_len) { 480 if (conf->max_index_len < prev->max_index_len) {
483 conf->max_index_len = prev->max_index_len; 481 conf->max_index_len = prev->max_index_len;
484 } 482 }
483
484 #endif
485 485
486 if (conf->index_cache == NULL) { 486 if (conf->index_cache == NULL) {
487 conf->index_cache = prev->index_cache; 487 conf->index_cache = prev->index_cache;
488 } 488 }
489 489