/third_party/nghttp2/src/ |
H A D | shrpx_downstream_test.cc | 171 req.http_major = 3; in test_downstream_supports_non_final_response() 176 req.http_major = 2; in test_downstream_supports_non_final_response() 181 req.http_major = 1; in test_downstream_supports_non_final_response() 186 req.http_major = 1; in test_downstream_supports_non_final_response() 191 req.http_major = 0; in test_downstream_supports_non_final_response()
|
H A D | shrpx_https_upstream.cc | 359 req.http_major = htp->http_major; in htp_hdrs_completecb() 372 << "HTTP/" << req.http_major << "." << req.http_minor << "\n"; in htp_hdrs_completecb() 398 if (req.http_major > 1 || req.http_minor > 1) { in htp_hdrs_completecb() 399 req.http_major = 1; in htp_hdrs_completecb() 404 if (req.http_major == 1 && req.http_minor == 1 && !host) { in htp_hdrs_completecb() 428 http2::legacy_http1(req.http_major, req.http_minor)) { in htp_hdrs_completecb() 995 } else if (req.http_major <= 0 || in send_reply() 996 (req.http_major == 1 && req.http_minor == 0)) { in send_reply() 1170 buf->append('0' + req.http_major); in on_downstream_header_complete() [all...] |
H A D | shrpx_downstream.h | 160 http_major(1), in Request() 211 int http_major, http_minor; member 242 http_major(1), in Response() 293 int http_major, http_minor; member
|
H A D | shrpx_http_downstream_connection.cc | 539 ((req.http_major == 3 || req.http_major == 2) in push_request_headers() 561 if (req.http_major == 3 || req.http_major == 2) { in push_request_headers() 689 auto end = http::create_via_header_value(viabuf.data(), req.http_major, in push_request_headers() 943 resp.http_major = htp->http_major; in htp_hdrs_completecb() 946 if (resp.http_major > 1 || req.http_minor > 1) { in htp_hdrs_completecb() 947 resp.http_major = 1; in htp_hdrs_completecb() 1028 } else if (http2::legacy_http1(req.http_major, re in htp_hdrs_completecb() [all...] |
H A D | shrpx_downstream.cc | 884 resp_.http_major = 1; in reset_response() 893 return req_.http_major == 3 || req_.http_major == 2 || in supports_non_final_response() 894 (req_.http_major == 1 && req_.http_minor == 1); in supports_non_final_response() 946 (resp_.http_major == 3 || resp_.http_major == 2); in expect_response_trailer()
|
H A D | shrpx_log.cc | 632 std::tie(p, last) = copy(req.http_major, p, last); in upstream_accesslog() 633 if (req.http_major < 2) { in upstream_accesslog() 649 std::tie(p, last) = copy(req.http_major, p, last); in upstream_accesslog() 650 if (req.http_major < 2) { in upstream_accesslog()
|
H A D | shrpx_http2_upstream.cc | 294 req.http_major = 2; in on_start_request() 730 req.http_major = 2; in on_frame_send_callback() 1836 p = http::create_via_header_value(p, resp.http_major, resp.http_minor); in on_downstream_header_complete() 2337 promised_req.http_major = 2; in on_downstream_push_promise()
|
H A D | shrpx_http2_downstream_connection.cc | 445 p = http::create_via_header_value(p, req.http_major, req.http_minor); in push_request_headers()
|
H A D | shrpx_mruby_module_response.cc | 54 return mrb_fixnum_value(resp.http_major); in response_get_http_version_major()
|
H A D | shrpx_mruby_module_request.cc | 54 return mrb_fixnum_value(req.http_major); in request_get_http_version_major()
|
H A D | shrpx_http2_session.cc | 1117 resp.http_major = 2; in on_response_headers() 1180 if (req.http_major <= 0 || (req.http_major == 1 && req.http_minor == 0)) { in on_response_headers()
|
H A D | shrpx_http3_upstream.cc | 256 req.http_major = 3; in http_begin_request_headers() 1416 p = http::create_via_header_value(p, resp.http_major, resp.http_minor); in on_downstream_header_complete()
|
/third_party/nghttp2/third-party/llhttp/src/ |
H A D | http.c | 137 if (parser->http_major > 0 && parser->http_minor > 0) { in llhttp_should_keep_alive()
|
H A D | api.c | 105 return parser->http_major; in llhttp_get_http_major()
|
/third_party/node/deps/llhttp/src/ |
H A D | http.c | 137 if (parser->http_major > 0 && parser->http_minor > 0) { in llhttp_should_keep_alive()
|
H A D | api.c | 90 return parser->http_major; in llhttp_get_http_major()
|
H A D | llhttp.c | 591 state->http_major = 0; in llhttp__internal__c_update_http_major() 953 state->http_major = match; in llhttp__internal__c_store_http_major() 977 return state->http_major; in llhttp__internal__c_load_http_major() 8753 state->http_major = 0; in llhttp__internal__c_update_http_major() 9115 state->http_major = match; in llhttp__internal__c_store_http_major() 9139 return state->http_major; in llhttp__internal__c_load_http_major()
|
/third_party/node/deps/llhttp/include/ |
H A D | llhttp.h | 33 uint8_t http_major; member
|
/third_party/nghttp2/third-party/llhttp/include/ |
H A D | llhttp.h | 30 uint8_t http_major; member
|
/third_party/node/src/ |
H A D | node_http_parser.cc | 421 argv[A_VERSION_MAJOR] = Integer::New(env()->isolate(), parser_.http_major); in on_headers_complete()
|