Searched refs:h2_headers (Results 1 – 8 of 8) sorted by relevance
/curl/lib/vquic/ |
H A D | curl_msh3.c | 624 struct dynhds h2_headers; in cf_msh3_send() local 633 Curl_dynhds_init(&h2_headers, 0, DYN_HTTP_REQUEST); in cf_msh3_send() 649 *err = Curl_http_req_to_h2(&h2_headers, h1.req, data); in cf_msh3_send() 655 nheader = Curl_dynhds_count(&h2_headers); in cf_msh3_send() 664 struct dynhds_entry *e = Curl_dynhds_getn(&h2_headers, i); in cf_msh3_send() 708 Curl_dynhds_free(&h2_headers); in cf_msh3_send()
|
H A D | curl_quiche.c | 981 struct dynhds h2_headers; in h3_open_stream() local 994 Curl_dynhds_init(&h2_headers, 0, DYN_HTTP_REQUEST); in h3_open_stream() 1006 *err = Curl_http_req_to_h2(&h2_headers, stream->h1.req, data); in h3_open_stream() 1014 nheader = Curl_dynhds_count(&h2_headers); in h3_open_stream() 1023 struct dynhds_entry *e = Curl_dynhds_getn(&h2_headers, i); in h3_open_stream() 1089 Curl_dynhds_free(&h2_headers); in h3_open_stream()
|
H A D | curl_ngtcp2.c | 1395 struct dynhds h2_headers; in h3_stream_open() local 1404 Curl_dynhds_init(&h2_headers, 0, DYN_HTTP_REQUEST); in h3_stream_open() 1425 *err = Curl_http_req_to_h2(&h2_headers, stream->h1.req, data); in h3_stream_open() 1433 nheader = Curl_dynhds_count(&h2_headers); in h3_stream_open() 1442 struct dynhds_entry *e = Curl_dynhds_getn(&h2_headers, i); in h3_stream_open() 1514 Curl_dynhds_free(&h2_headers); in h3_stream_open()
|
H A D | curl_osslq.c | 1794 struct dynhds h2_headers; in h3_stream_open() local 1803 Curl_dynhds_init(&h2_headers, 0, DYN_HTTP_REQUEST); in h3_stream_open() 1824 *err = Curl_http_req_to_h2(&h2_headers, stream->h1.req, data); in h3_stream_open() 1832 nheader = Curl_dynhds_count(&h2_headers); in h3_stream_open() 1841 struct dynhds_entry *e = Curl_dynhds_getn(&h2_headers, i); in h3_stream_open() 1913 Curl_dynhds_free(&h2_headers); in h3_stream_open()
|
/curl/lib/ |
H A D | http.h | 273 CURLcode Curl_http_req_to_h2(struct dynhds *h2_headers,
|
H A D | cf-h2-proxy.c | 906 struct dynhds h2_headers; in proxy_h2_submit() local 913 Curl_dynhds_init(&h2_headers, 0, DYN_HTTP_REQUEST); in proxy_h2_submit() 914 result = Curl_http_req_to_h2(&h2_headers, req, data); in proxy_h2_submit() 918 nva = Curl_dynhds_to_nva(&h2_headers, &nheader); in proxy_h2_submit() 947 Curl_dynhds_free(&h2_headers); in proxy_h2_submit()
|
H A D | http.c | 4297 CURLcode Curl_http_req_to_h2(struct dynhds *h2_headers, in Curl_http_req_to_h2() argument 4306 DEBUGASSERT(h2_headers); in Curl_http_req_to_h2() 4334 Curl_dynhds_reset(h2_headers); in Curl_http_req_to_h2() 4335 Curl_dynhds_set_opts(h2_headers, DYNHDS_OPT_LOWERCASE); in Curl_http_req_to_h2() 4336 result = Curl_dynhds_add(h2_headers, STRCONST(HTTP_PSEUDO_METHOD), in Curl_http_req_to_h2() 4339 result = Curl_dynhds_add(h2_headers, STRCONST(HTTP_PSEUDO_SCHEME), in Curl_http_req_to_h2() 4343 result = Curl_dynhds_add(h2_headers, STRCONST(HTTP_PSEUDO_AUTHORITY), in Curl_http_req_to_h2() 4347 result = Curl_dynhds_add(h2_headers, STRCONST(HTTP_PSEUDO_PATH), in Curl_http_req_to_h2() 4353 result = Curl_dynhds_add(h2_headers, e->name, e->namelen, in Curl_http_req_to_h2()
|
H A D | http2.c | 2164 struct dynhds h2_headers; in h2_submit() local 2173 Curl_dynhds_init(&h2_headers, 0, DYN_HTTP_REQUEST); in h2_submit() 2190 *err = Curl_http_req_to_h2(&h2_headers, stream->h1.req, data); in h2_submit() 2198 nva = Curl_dynhds_to_nva(&h2_headers, &nheader); in h2_submit() 2276 Curl_dynhds_free(&h2_headers); in h2_submit()
|
Completed in 55 milliseconds