Home
last modified time | relevance | path

Searched refs:h2_headers (Results 1 – 7 of 7) sorted by relevance

/third_party/curl/lib/vquic/
Dcurl_msh3.c570 struct dynhds h2_headers; in cf_msh3_send() local
580 Curl_dynhds_init(&h2_headers, 0, DYN_HTTP_REQUEST); in cf_msh3_send()
596 *err = Curl_http_req_to_h2(&h2_headers, h1.req, data); in cf_msh3_send()
602 nheader = Curl_dynhds_count(&h2_headers); in cf_msh3_send()
611 struct dynhds_entry *e = Curl_dynhds_getn(&h2_headers, i); in cf_msh3_send()
670 Curl_dynhds_free(&h2_headers); in cf_msh3_send()
Dcurl_quiche.c964 struct dynhds h2_headers; in h3_open_stream() local
977 Curl_dynhds_init(&h2_headers, 0, DYN_HTTP_REQUEST); in h3_open_stream()
989 *err = Curl_http_req_to_h2(&h2_headers, stream->h1.req, data); in h3_open_stream()
997 nheader = Curl_dynhds_count(&h2_headers); in h3_open_stream()
1006 struct dynhds_entry *e = Curl_dynhds_getn(&h2_headers, i); in h3_open_stream()
1072 Curl_dynhds_free(&h2_headers); in h3_open_stream()
Dcurl_ngtcp2.c1663 struct dynhds h2_headers; in h3_stream_open() local
1672 Curl_dynhds_init(&h2_headers, 0, DYN_HTTP_REQUEST); in h3_stream_open()
1689 *err = Curl_http_req_to_h2(&h2_headers, stream->h1.req, data); in h3_stream_open()
1697 nheader = Curl_dynhds_count(&h2_headers); in h3_stream_open()
1706 struct dynhds_entry *e = Curl_dynhds_getn(&h2_headers, i); in h3_stream_open()
1775 Curl_dynhds_free(&h2_headers); in h3_stream_open()
/third_party/curl/lib/
Dcf-h2-proxy.c910 struct dynhds h2_headers; in proxy_h2_submit() local
918 Curl_dynhds_init(&h2_headers, 0, DYN_HTTP_REQUEST); in proxy_h2_submit()
919 result = Curl_http_req_to_h2(&h2_headers, req, data); in proxy_h2_submit()
923 nheader = Curl_dynhds_count(&h2_headers); in proxy_h2_submit()
931 struct dynhds_entry *e = Curl_dynhds_getn(&h2_headers, i); in proxy_h2_submit()
962 Curl_dynhds_free(&h2_headers); in proxy_h2_submit()
Dhttp.h310 CURLcode Curl_http_req_to_h2(struct dynhds *h2_headers,
Dhttp.c4872 CURLcode Curl_http_req_to_h2(struct dynhds *h2_headers, in Curl_http_req_to_h2() argument
4881 DEBUGASSERT(h2_headers); in Curl_http_req_to_h2()
4909 Curl_dynhds_reset(h2_headers); in Curl_http_req_to_h2()
4910 Curl_dynhds_set_opts(h2_headers, DYNHDS_OPT_LOWERCASE); in Curl_http_req_to_h2()
4911 result = Curl_dynhds_add(h2_headers, STRCONST(HTTP_PSEUDO_METHOD), in Curl_http_req_to_h2()
4914 result = Curl_dynhds_add(h2_headers, STRCONST(HTTP_PSEUDO_SCHEME), in Curl_http_req_to_h2()
4918 result = Curl_dynhds_add(h2_headers, STRCONST(HTTP_PSEUDO_AUTHORITY), in Curl_http_req_to_h2()
4922 result = Curl_dynhds_add(h2_headers, STRCONST(HTTP_PSEUDO_PATH), in Curl_http_req_to_h2()
4928 result = Curl_dynhds_add(h2_headers, e->name, e->namelen, in Curl_http_req_to_h2()
Dhttp2.c2037 struct dynhds h2_headers; in h2_submit() local
2046 Curl_dynhds_init(&h2_headers, 0, DYN_HTTP_REQUEST); in h2_submit()
2063 *err = Curl_http_req_to_h2(&h2_headers, stream->h1.req, data); in h2_submit()
2071 nheader = Curl_dynhds_count(&h2_headers); in h2_submit()
2080 struct dynhds_entry *e = Curl_dynhds_getn(&h2_headers, i); in h2_submit()
2177 Curl_dynhds_free(&h2_headers); in h2_submit()