Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2004-03-16 10:10:12 +0300
committerIgor Sysoev <igor@sysoev.ru>2004-03-16 10:10:12 +0300
commit10a543a810ac78eb5d754302b001debf9cd420c4 (patch)
treea4a4f43835bed4549007b82db516d460fc86c555 /src/http/ngx_http.h
parent5596ede94ed311bb9d16ee11f6f68c97eb46d836 (diff)
nginx-0.0.2-2004-03-16-10:10:12 import
Diffstat (limited to 'src/http/ngx_http.h')
-rw-r--r--src/http/ngx_http.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/http/ngx_http.h b/src/http/ngx_http.h
index ff4bc2b4c..35879d41c 100644
--- a/src/http/ngx_http.h
+++ b/src/http/ngx_http.h
@@ -22,10 +22,10 @@ typedef struct ngx_http_cleanup_s ngx_http_cleanup_t;
typedef struct {
- u_int connection;
- char *action;
- char *client;
- char *url;
+ u_int connection;
+ u_char *action;
+ u_char *client;
+ u_char *url;
} ngx_http_log_ctx_t;
@@ -69,14 +69,14 @@ void ngx_http_close_request(ngx_http_request_t *r, int error);
void ngx_http_close_connection(ngx_connection_t *c);
-int ngx_http_read_client_request_body(ngx_http_request_t *r,
- int request_buffer_size);
+ngx_int_t ngx_http_read_client_request_body(ngx_http_request_t *r,
+ size_t request_buffer_size);
int ngx_http_send_header(ngx_http_request_t *r);
int ngx_http_special_response_handler(ngx_http_request_t *r, int error);
-time_t ngx_http_parse_time(char *value, size_t len);
+time_t ngx_http_parse_time(u_char *value, size_t len);
size_t ngx_http_get_time(char *buf, time_t t);
ngx_table_elt_t *ngx_http_add_header(void *header,
ngx_http_header_t *http_headers);