diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-04-21 07:50:19 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-04-21 07:50:19 +0000 |
commit | b4ccb9f5bd1ae7ea59e2f78c31ec713bb10af0ff (patch) | |
tree | 73172325b181d406d61fb6880b2535c172663cef /src/http/ngx_http_request.h | |
parent | 60472812081386c0f2fda3139aef07a10f095173 (diff) | |
download | nginx-b4ccb9f5bd1ae7ea59e2f78c31ec713bb10af0ff.tar.gz nginx-b4ccb9f5bd1ae7ea59e2f78c31ec713bb10af0ff.zip |
$request_time has millisecond precision
Diffstat (limited to 'src/http/ngx_http_request.h')
-rw-r--r-- | src/http/ngx_http_request.h | 3 |
1 files changed, 2 insertions, 1 deletions
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; |