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

Function h2_bucket_headers_create

modules/http2/h2_headers.c:73–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71}
72
73apr_bucket * h2_bucket_headers_create(apr_bucket_alloc_t *list,
74 h2_headers *r)
75{
76 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
77
78 APR_BUCKET_INIT(b);
79 b->free = apr_bucket_free;
80 b->list = list;
81 b = h2_bucket_headers_make(b, r);
82 return b;
83}
84
85h2_headers *h2_bucket_headers_get(apr_bucket *b)
86{

Callers 7

pass_responseFunction · 0.85
h2_bucket_headers_cloneFunction · 0.85
make_valid_respFunction · 0.85
make_invalid_respFunction · 0.85
close_inputFunction · 0.85

Calls 1

h2_bucket_headers_makeFunction · 0.85

Tested by

no test coverage detected