summaryrefslogtreecommitdiffhomepage
path: root/src/http/ngx_http_upstream.h
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2006-12-06 11:33:18 +0000
committerIgor Sysoev <igor@sysoev.ru>2006-12-06 11:33:18 +0000
commit8f98581bbf1d163719f53146ff56af403d8cfc94 (patch)
treee55f6b5cb65ad94a48fa179f349172a7c7625af8 /src/http/ngx_http_upstream.h
parent8b6844c747ce533fba9ab26f3a6eff96e9b318c4 (diff)
downloadnginx-8f98581bbf1d163719f53146ff56af403d8cfc94.tar.gz
nginx-8f98581bbf1d163719f53146ff56af403d8cfc94.tar.bz2
the previous fix does not actually fix overflow
Diffstat (limited to '')
-rw-r--r--src/http/ngx_http_upstream.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/http/ngx_http_upstream.h b/src/http/ngx_http_upstream.h
index 80c4d82b2..185964e2c 100644
--- a/src/http/ngx_http_upstream.h
+++ b/src/http/ngx_http_upstream.h
@@ -35,7 +35,8 @@ typedef struct {
ngx_uint_t bl_state;
ngx_uint_t status;
- ngx_msec_t response_time;
+ time_t response_sec;
+ ngx_uint_t response_msec;
ngx_str_t *peer;
} ngx_http_upstream_state_t;