Home
last modified time | relevance | path

Searched refs:http_major (Results 1 – 2 of 2) sorted by relevance

/f-stack/app/nginx-1.16.1/src/http/
H A Dngx_http_parse.c730 r->http_major = ch - '0'; in ngx_http_parse_request_line()
732 if (r->http_major > 1) { in ngx_http_parse_request_line()
750 r->http_major = r->http_major * 10 + (ch - '0'); in ngx_http_parse_request_line()
752 if (r->http_major > 1) { in ngx_http_parse_request_line()
834 r->http_version = r->http_major * 1000 + r->http_minor; in ngx_http_parse_request_line()
1690 r->http_major = ch - '0'; in ngx_http_parse_status_line()
1705 if (r->http_major > 99) { in ngx_http_parse_status_line()
1709 r->http_major = r->http_major * 10 + (ch - '0'); in ngx_http_parse_status_line()
1815 status->http_version = r->http_major * 1000 + r->http_minor; in ngx_http_parse_status_line()
H A Dngx_http_request.h592 unsigned http_major:16; member