comparison src/http/ngx_http_upstream.c @ 346:05693816539c NGINX_0_6_17

nginx 0.6.17 *) Feature: the "If-Range" request header line support. Thanks to Alexander V. Inyukhin. *) Bugfix: URL double escaping in a redirect of the "msie_refresh" directive; bug appeared in 0.6.4. *) Bugfix: the "autoindex" directive did not work with the "alias /" directive. *) Bugfix: a segmentation fault might occur in worker process if subrequests were used. *) Bugfix: the big responses may be transferred truncated if SSL and gzip were used. *) Bugfix: the $status variable was equal to 0 if a proxied server returned response in HTTP/0.9 version.
author Igor Sysoev <http://sysoev.ru>
date Thu, 15 Nov 2007 00:00:00 +0300
parents 10cc350ed8a1
children e10168d6e371
comparison
equal deleted inserted replaced
345:4279bc4cdec6 346:05693816539c
2871 i = 0; 2871 i = 0;
2872 state = r->upstream_states->elts; 2872 state = r->upstream_states->elts;
2873 2873
2874 for ( ;; ) { 2874 for ( ;; ) {
2875 if (state[i].status) { 2875 if (state[i].status) {
2876 ms = state[i].response_sec * 1000 + state[i].response_msec; 2876 ms = (ngx_msec_int_t)
2877 (state[i].response_sec * 1000 + state[i].response_msec);
2877 ms = (ms >= 0) ? ms : 0; 2878 ms = (ms >= 0) ? ms : 0;
2878 p = ngx_sprintf(p, "%d.%03d", ms / 1000, ms % 1000); 2879 p = ngx_sprintf(p, "%d.%03d", ms / 1000, ms % 1000);
2879 2880
2880 } else { 2881 } else {
2881 *p++ = '-'; 2882 *p++ = '-';