diff src/http/ngx_http_upstream.h @ 889:a9a7e4b1a72b

the previous fix does not actually fix overflow
author Igor Sysoev <igor@sysoev.ru>
date Wed, 06 Dec 2006 11:33:18 +0000
parents 4d68c486fcb0
children a0310ac2814f
line wrap: on
line diff
--- 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;