| 57 | } |
| 58 | |
| 59 | apr_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 | |
| 73 | apr_bucket * h2_bucket_headers_create(apr_bucket_alloc_t *list, |
| 74 | h2_headers *r) |
no outgoing calls
no test coverage detected