From b4ccb9f5bd1ae7ea59e2f78c31ec713bb10af0ff Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Sat, 21 Apr 2007 07:50:19 +0000 Subject: $request_time has millisecond precision --- src/http/ngx_http_request.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/http/ngx_http_request.h') diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h index 414efd7a2..a380ac0f0 100644 --- a/src/http/ngx_http_request.h +++ b/src/http/ngx_http_request.h @@ -342,7 +342,8 @@ struct ngx_http_request_s { ngx_http_request_body_t *request_body; time_t lingering_time; - time_t start_time; + time_t start_sec; + ngx_msec_t start_msec; ngx_uint_t method; ngx_uint_t http_version; -- cgit