diff options
author | Igor Sysoev <igor@sysoev.ru> | 2003-10-03 15:50:53 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2003-10-03 15:50:53 +0000 |
commit | e677922487a45b840663cf97ef28b37d8cf1ac8c (patch) | |
tree | f9987f56d4a33a030081c36585e4bf3671676f73 /src/http/ngx_http_parse.c | |
parent | 87a01ea908356173d6387aea2af94ad0fe236bb4 (diff) | |
download | nginx-e677922487a45b840663cf97ef28b37d8cf1ac8c.tar.gz nginx-e677922487a45b840663cf97ef28b37d8cf1ac8c.zip |
nginx-0.0.1-2003-10-03-19:50:53 import
Diffstat (limited to 'src/http/ngx_http_parse.c')
-rw-r--r-- | src/http/ngx_http_parse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/ngx_http_parse.c b/src/http/ngx_http_parse.c index e02805be8..fa037ddff 100644 --- a/src/http/ngx_http_parse.c +++ b/src/http/ngx_http_parse.c @@ -3,7 +3,7 @@ #include <ngx_core.h> #include <ngx_http.h> -int ngx_parse_http_request_line(ngx_http_request_t *r) +int ngx_http_parse_request_line(ngx_http_request_t *r) { char ch; char *p; @@ -417,7 +417,7 @@ int ngx_parse_http_request_line(ngx_http_request_t *r) } } -int ngx_parse_http_header_line(ngx_http_request_t *r, ngx_hunk_t *h) +int ngx_http_parse_header_line(ngx_http_request_t *r, ngx_hunk_t *h) { char c, ch; char *p; |