diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2002-08-26 15:18:19 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2002-08-26 15:18:19 +0000 |
| commit | 0ad17c09032bdfbc67cd1239b43107edc9d55a52 (patch) | |
| tree | 3c2b56845d9c982135e12d505e1e443cbe0cd8ff /src/http/ngx_http.h | |
| parent | 83661a922b26d84230ae0cc39f161323797cbb6c (diff) | |
| download | nginx-0ad17c09032bdfbc67cd1239b43107edc9d55a52.tar.gz nginx-0ad17c09032bdfbc67cd1239b43107edc9d55a52.tar.bz2 | |
nginx-0.0.1-2002-08-26-19:18:19 import
Diffstat (limited to 'src/http/ngx_http.h')
| -rw-r--r-- | src/http/ngx_http.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/http/ngx_http.h b/src/http/ngx_http.h index 6b87da539..33de2fd5f 100644 --- a/src/http/ngx_http.h +++ b/src/http/ngx_http.h @@ -70,7 +70,7 @@ typedef struct ngx_http_request_s ngx_http_request_t; struct ngx_http_request_s { char *filename; char *location; - ngx_file_t fd; + ngx_fd_t fd; ngx_http_headers_out_t *headers_out; @@ -113,6 +113,12 @@ struct ngx_http_request_s { #endif }; +typedef struct { + char *action; + char *client; + char *url; +} ngx_http_log_ctx_t; + #define NGX_INDEX "index.html" |
