MCPcopy Create free account
hub / github.com/apache/httpd / h2_bucket_headers_make

Function h2_bucket_headers_make

modules/http2/h2_headers.c:59–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

57}
58
59apr_bucket * h2_bucket_headers_make(apr_bucket *b, h2_headers *r)
60{
61 h2_bucket_headers *br;
62
63 br = apr_bucket_alloc(sizeof(*br), b->list);
64 br->headers = r;
65
66 b = apr_bucket_shared_make(b, br, 0, 0);
67 b->type = &h2_bucket_type_headers;
68 b->length = 0;
69
70 return b;
71}
72
73apr_bucket * h2_bucket_headers_create(apr_bucket_alloc_t *list,
74 h2_headers *r)

Callers 1

h2_bucket_headers_createFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected