Searched refs:http_major (Results 1 – 2 of 2) sorted by relevance
730 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()
592 unsigned http_major:16; member