comparison src/http/ngx_http_upstream.h @ 6146:59fc60585f1e

Upstream: times to obtain header/response are stored as ngx_msec_t.
author Ruslan Ermilov <ru@nginx.com>
date Sat, 16 May 2015 01:31:04 +0300
parents 79ddb0bdb273
children 74b6ef56ea56
comparison
equal deleted inserted replaced
6145:0b8f6f75245d 6146:59fc60585f1e
56 typedef struct { 56 typedef struct {
57 ngx_msec_t bl_time; 57 ngx_msec_t bl_time;
58 ngx_uint_t bl_state; 58 ngx_uint_t bl_state;
59 59
60 ngx_uint_t status; 60 ngx_uint_t status;
61 time_t response_sec; 61 ngx_msec_t response_time;
62 ngx_uint_t response_msec; 62 ngx_msec_t header_time;
63 time_t header_sec;
64 ngx_uint_t header_msec;
65 off_t response_length; 63 off_t response_length;
66 64
67 ngx_str_t *peer; 65 ngx_str_t *peer;
68 } ngx_http_upstream_state_t; 66 } ngx_http_upstream_state_t;
69 67