• Home
  • Raw
  • Download

Lines Matching refs:MAKE_NV

85     MAKE_NV(":method", "GET"),
86 MAKE_NV(":path", "/"),
87 MAKE_NV(":scheme", "https"),
88 MAKE_NV(":authority", "localhost"),
92 MAKE_NV(":status", "200"),
97 MAKE_NV("digest", "SHA-256="
1848 MAKE_NV(":method", "GET"), MAKE_NV(":path", "/"), in test_nghttp2_session_recv_headers_with_extpri()
1849 MAKE_NV(":scheme", "https"), MAKE_NV(":authority", "localhost"), in test_nghttp2_session_recv_headers_with_extpri()
1850 MAKE_NV("priority", "i,u=2"), in test_nghttp2_session_recv_headers_with_extpri()
2143 nghttp2_nv nv = MAKE_NV(":authority", "example.org"); in test_nghttp2_session_recv_settings_header_table_size()
2983 const nghttp2_nv nv1[] = {MAKE_NV(":method", "GET"), MAKE_NV(":path", "/")}; in test_nghttp2_session_continue()
2984 const nghttp2_nv nv2[] = {MAKE_NV("user-agent", "nghttp2/1.0.0"), in test_nghttp2_session_continue()
2985 MAKE_NV("alpha", "bravo")}; in test_nghttp2_session_continue()
3220 nghttp2_nv malformed_nva[] = {MAKE_NV(":path", "\x01")}; in test_nghttp2_session_on_request_headers_received()
3688 nghttp2_nv nv = MAKE_NV(":authority", "example.org"); in test_nghttp2_session_on_settings_received()
3994 nghttp2_nv malformed_nva[] = {MAKE_NV(":path", "\x01")}; in test_nghttp2_session_on_push_promise_received()
5940 MAKE_NV("h1", ""), MAKE_NV("h1", ""), MAKE_NV("h1", ""), in test_nghttp2_submit_headers_continuation()
5941 MAKE_NV("h1", ""), MAKE_NV("h1", ""), MAKE_NV("h1", ""), in test_nghttp2_submit_headers_continuation()
5942 MAKE_NV("h1", ""), in test_nghttp2_submit_headers_continuation()
5979 MAKE_NV("h1", ""), MAKE_NV("h1", ""), MAKE_NV("h1", ""), in test_nghttp2_submit_headers_continuation_extra_large()
5980 MAKE_NV("h1", ""), MAKE_NV("h1", ""), MAKE_NV("h1", ""), in test_nghttp2_submit_headers_continuation_extra_large()
6592 nghttp2_nv empty_name_nv[] = {MAKE_NV("Version", "HTTP/1.1"), in test_nghttp2_submit_invalid_nv()
6593 MAKE_NV("", "empty name")}; in test_nghttp2_submit_invalid_nv()
10095 nghttp2_nv nv[] = {MAKE_NV("alpha", "bravo"), MAKE_NV("charlie", "delta")}; in test_nghttp2_session_on_header_temporal_failure()
12161 const nghttp2_nv nostatus_resnv[] = {MAKE_NV("server", "foo")}; in test_nghttp2_http_mandatory_headers()
12162 const nghttp2_nv dupstatus_resnv[] = {MAKE_NV(":status", "200"), in test_nghttp2_http_mandatory_headers()
12163 MAKE_NV(":status", "200")}; in test_nghttp2_http_mandatory_headers()
12164 const nghttp2_nv badpseudo_resnv[] = {MAKE_NV(":status", "200"), in test_nghttp2_http_mandatory_headers()
12165 MAKE_NV(":scheme", "https")}; in test_nghttp2_http_mandatory_headers()
12166 const nghttp2_nv latepseudo_resnv[] = {MAKE_NV("server", "foo"), in test_nghttp2_http_mandatory_headers()
12167 MAKE_NV(":status", "200")}; in test_nghttp2_http_mandatory_headers()
12168 const nghttp2_nv badstatus_resnv[] = {MAKE_NV(":status", "2000")}; in test_nghttp2_http_mandatory_headers()
12169 const nghttp2_nv badcl_resnv[] = {MAKE_NV(":status", "200"), in test_nghttp2_http_mandatory_headers()
12170 MAKE_NV("content-length", "-1")}; in test_nghttp2_http_mandatory_headers()
12171 const nghttp2_nv dupcl_resnv[] = {MAKE_NV(":status", "200"), in test_nghttp2_http_mandatory_headers()
12172 MAKE_NV("content-length", "0"), in test_nghttp2_http_mandatory_headers()
12173 MAKE_NV("content-length", "0")}; in test_nghttp2_http_mandatory_headers()
12174 const nghttp2_nv badhd_resnv[] = {MAKE_NV(":status", "200"), in test_nghttp2_http_mandatory_headers()
12175 MAKE_NV("connection", "close")}; in test_nghttp2_http_mandatory_headers()
12176 const nghttp2_nv cl1xx_resnv[] = {MAKE_NV(":status", "100"), in test_nghttp2_http_mandatory_headers()
12177 MAKE_NV("content-length", "0")}; in test_nghttp2_http_mandatory_headers()
12178 const nghttp2_nv cl204_resnv[] = {MAKE_NV(":status", "204"), in test_nghttp2_http_mandatory_headers()
12179 MAKE_NV("content-length", "0")}; in test_nghttp2_http_mandatory_headers()
12180 const nghttp2_nv clnonzero204_resnv[] = {MAKE_NV(":status", "204"), in test_nghttp2_http_mandatory_headers()
12181 MAKE_NV("content-length", "100")}; in test_nghttp2_http_mandatory_headers()
12182 const nghttp2_nv status101_resnv[] = {MAKE_NV(":status", "101")}; in test_nghttp2_http_mandatory_headers()
12183 const nghttp2_nv unexpectedhost_resnv[] = {MAKE_NV(":status", "200"), in test_nghttp2_http_mandatory_headers()
12184 MAKE_NV("host", "/localhost")}; in test_nghttp2_http_mandatory_headers()
12187 const nghttp2_nv nopath_reqnv[] = {MAKE_NV(":scheme", "https"), in test_nghttp2_http_mandatory_headers()
12188 MAKE_NV(":method", "GET"), in test_nghttp2_http_mandatory_headers()
12189 MAKE_NV(":authority", "localhost")}; in test_nghttp2_http_mandatory_headers()
12191 MAKE_NV(":method", "CONNECT"), MAKE_NV(":scheme", "https"), in test_nghttp2_http_mandatory_headers()
12192 MAKE_NV(":path", "/"), MAKE_NV(":authority", "localhost")}; in test_nghttp2_http_mandatory_headers()
12194 MAKE_NV(":scheme", "https"), MAKE_NV(":path", "/"), in test_nghttp2_http_mandatory_headers()
12195 MAKE_NV(":method", "CONNECT"), MAKE_NV(":authority", "localhost")}; in test_nghttp2_http_mandatory_headers()
12197 MAKE_NV(":scheme", "https"), MAKE_NV(":method", "GET"), in test_nghttp2_http_mandatory_headers()
12198 MAKE_NV(":authority", "localhost"), MAKE_NV(":path", "/"), in test_nghttp2_http_mandatory_headers()
12199 MAKE_NV(":path", "/")}; in test_nghttp2_http_mandatory_headers()
12201 MAKE_NV(":scheme", "https"), MAKE_NV(":method", "POST"), in test_nghttp2_http_mandatory_headers()
12202 MAKE_NV(":authority", "localhost"), MAKE_NV(":path", "/"), in test_nghttp2_http_mandatory_headers()
12203 MAKE_NV("content-length", "-1")}; in test_nghttp2_http_mandatory_headers()
12205 MAKE_NV(":scheme", "https"), MAKE_NV(":method", "POST"), in test_nghttp2_http_mandatory_headers()
12206 MAKE_NV(":authority", "localhost"), MAKE_NV(":path", "/"), in test_nghttp2_http_mandatory_headers()
12207 MAKE_NV("content-length", "0"), MAKE_NV("content-length", "0")}; in test_nghttp2_http_mandatory_headers()
12209 MAKE_NV(":scheme", "https"), MAKE_NV(":method", "GET"), in test_nghttp2_http_mandatory_headers()
12210 MAKE_NV(":authority", "localhost"), MAKE_NV(":path", "/"), in test_nghttp2_http_mandatory_headers()
12211 MAKE_NV("connection", "close")}; in test_nghttp2_http_mandatory_headers()
12213 MAKE_NV(":scheme", "https"), MAKE_NV(":method", "GET"), in test_nghttp2_http_mandatory_headers()
12214 MAKE_NV(":authority", "\x0d\x0alocalhost"), MAKE_NV(":path", "/")}; in test_nghttp2_http_mandatory_headers()
12216 MAKE_NV(":scheme", "https"), MAKE_NV(":method", "GET"), in test_nghttp2_http_mandatory_headers()
12217 MAKE_NV("foo", "\x0d\x0a"), MAKE_NV(":authority", "localhost"), in test_nghttp2_http_mandatory_headers()
12218 MAKE_NV(":path", "/")}; in test_nghttp2_http_mandatory_headers()
12220 MAKE_NV(":path", "*"), MAKE_NV(":scheme", "https"), in test_nghttp2_http_mandatory_headers()
12221 MAKE_NV(":authority", "localhost"), MAKE_NV(":method", "GET")}; in test_nghttp2_http_mandatory_headers()
12223 MAKE_NV(":scheme", "https"), MAKE_NV(":authority", "localhost"), in test_nghttp2_http_mandatory_headers()
12224 MAKE_NV(":method", "GET"), MAKE_NV(":path", "*")}; in test_nghttp2_http_mandatory_headers()
12226 MAKE_NV(":path", "*"), MAKE_NV(":scheme", "https"), in test_nghttp2_http_mandatory_headers()
12227 MAKE_NV(":authority", "localhost"), MAKE_NV(":method", "OPTIONS")}; in test_nghttp2_http_mandatory_headers()
12229 MAKE_NV(":scheme", "https"), MAKE_NV(":authority", "localhost"), in test_nghttp2_http_mandatory_headers()
12230 MAKE_NV(":method", "OPTIONS"), MAKE_NV(":path", "*")}; in test_nghttp2_http_mandatory_headers()
12232 MAKE_NV(":scheme", "https"), MAKE_NV(":path", "/"), in test_nghttp2_http_mandatory_headers()
12233 MAKE_NV(":method", "CONNECT"), MAKE_NV(":authority", "localhost"), in test_nghttp2_http_mandatory_headers()
12234 MAKE_NV(":protocol", "websocket")}; in test_nghttp2_http_mandatory_headers()
12236 MAKE_NV(":scheme", "https"), MAKE_NV(":path", "/"), in test_nghttp2_http_mandatory_headers()
12237 MAKE_NV(":method", "GET"), MAKE_NV(":authority", "localhost"), in test_nghttp2_http_mandatory_headers()
12238 MAKE_NV(":protocol", "websocket")}; in test_nghttp2_http_mandatory_headers()
12240 MAKE_NV(":scheme", "https"), MAKE_NV(":method", "CONNECT"), in test_nghttp2_http_mandatory_headers()
12241 MAKE_NV(":authority", "localhost"), MAKE_NV(":protocol", "websocket")}; in test_nghttp2_http_mandatory_headers()
12243 MAKE_NV(":scheme", "http"), MAKE_NV(":path", "/"), in test_nghttp2_http_mandatory_headers()
12244 MAKE_NV(":method", "CONNECT"), MAKE_NV("host", "localhost"), in test_nghttp2_http_mandatory_headers()
12245 MAKE_NV(":protocol", "websocket")}; in test_nghttp2_http_mandatory_headers()
12247 MAKE_NV(":method", "CONNECT"), MAKE_NV(":authority", "localhost")}; in test_nghttp2_http_mandatory_headers()
12458 const nghttp2_nv cl_resnv[] = {MAKE_NV(":status", "200"), in test_nghttp2_http_content_length()
12459 MAKE_NV("te", "trailers"), in test_nghttp2_http_content_length()
12460 MAKE_NV("content-length", "9000000000")}; in test_nghttp2_http_content_length()
12462 MAKE_NV(":path", "/"), MAKE_NV(":method", "PUT"), in test_nghttp2_http_content_length()
12463 MAKE_NV(":scheme", "https"), MAKE_NV("te", "trailers"), in test_nghttp2_http_content_length()
12464 MAKE_NV("host", "localhost"), MAKE_NV("content-length", "9000000000")}; in test_nghttp2_http_content_length()
12530 MAKE_NV(":path", "/"), MAKE_NV(":method", "PUT"), in test_nghttp2_http_content_length_mismatch()
12531 MAKE_NV(":authority", "localhost"), MAKE_NV(":scheme", "https"), in test_nghttp2_http_content_length_mismatch()
12532 MAKE_NV("content-length", "20")}; in test_nghttp2_http_content_length_mismatch()
12533 const nghttp2_nv cl_resnv[] = {MAKE_NV(":status", "200"), in test_nghttp2_http_content_length_mismatch()
12534 MAKE_NV("content-length", "20")}; in test_nghttp2_http_content_length_mismatch()
12713 MAKE_NV(":status", "100"), in test_nghttp2_http_non_final_response()
12859 MAKE_NV("foo", "bar"), in test_nghttp2_http_trailer_headers()
12973 MAKE_NV(":authority", "localhost"), in test_nghttp2_http_ignore_regular_header()
12974 MAKE_NV(":scheme", "https"), in test_nghttp2_http_ignore_regular_header()
12975 MAKE_NV(":path", "/"), in test_nghttp2_http_ignore_regular_header()
12976 MAKE_NV(":method", "GET"), in test_nghttp2_http_ignore_regular_header()
12977 MAKE_NV("foo", "\x0zzz"), in test_nghttp2_http_ignore_regular_header()
12978 MAKE_NV("bar", "buzz"), in test_nghttp2_http_ignore_regular_header()
12981 MAKE_NV(":authority", "localhost"), MAKE_NV(":scheme", "https"), in test_nghttp2_http_ignore_regular_header()
12982 MAKE_NV(":path", "/"), MAKE_NV(":method", "GET"), MAKE_NV("bar", "buzz")}; in test_nghttp2_http_ignore_regular_header()
13094 const nghttp2_nv cl_resnv[] = {MAKE_NV(":status", "304"), in test_nghttp2_http_ignore_content_length()
13095 MAKE_NV("content-length", "20")}; in test_nghttp2_http_ignore_content_length()
13096 const nghttp2_nv conn_reqnv[] = {MAKE_NV(":authority", "localhost"), in test_nghttp2_http_ignore_content_length()
13097 MAKE_NV(":method", "CONNECT"), in test_nghttp2_http_ignore_content_length()
13098 MAKE_NV("content-length", "999999")}; in test_nghttp2_http_ignore_content_length()
13099 const nghttp2_nv conn_cl_resnv[] = {MAKE_NV(":status", "200"), in test_nghttp2_http_ignore_content_length()
13100 MAKE_NV("content-length", "0")}; in test_nghttp2_http_ignore_content_length()
13181 const nghttp2_nv conn_reqnv[] = {MAKE_NV(":method", "CONNECT"), in test_nghttp2_http_record_request_method()
13182 MAKE_NV(":authority", "localhost")}; in test_nghttp2_http_record_request_method()
13183 const nghttp2_nv conn_resnv[] = {MAKE_NV(":status", "200"), in test_nghttp2_http_record_request_method()
13184 MAKE_NV("content-length", "9999")}; in test_nghttp2_http_record_request_method()
13241 const nghttp2_nv bad_reqnv[] = {MAKE_NV(":method", "GET")}; in test_nghttp2_http_push_promise()
13315 const nghttp2_nv cl_resnv[] = {MAKE_NV(":status", "200"), in test_nghttp2_http_head_method_upgrade_workaround()
13316 MAKE_NV("content-length", "1000000007")}; in test_nghttp2_http_head_method_upgrade_workaround()
13362 MAKE_NV(":path", "/"), in test_nghttp2_http_no_rfc9113_leading_and_trailing_ws_validation()
13363 MAKE_NV(":method", "GET"), in test_nghttp2_http_no_rfc9113_leading_and_trailing_ws_validation()
13364 MAKE_NV(":authority", "localhost"), in test_nghttp2_http_no_rfc9113_leading_and_trailing_ws_validation()
13365 MAKE_NV(":scheme", "https"), in test_nghttp2_http_no_rfc9113_leading_and_trailing_ws_validation()
13366 MAKE_NV("foo", "bar "), in test_nghttp2_http_no_rfc9113_leading_and_trailing_ws_validation()