| 109 | }; |
| 110 | |
| 111 | apr_bucket *h2_bucket_headers_clone(apr_bucket *b, apr_pool_t *pool, |
| 112 | apr_bucket_alloc_t *list) |
| 113 | { |
| 114 | h2_headers *hdrs = ((h2_bucket_headers *)b->data)->headers; |
| 115 | return h2_bucket_headers_create(list, h2_headers_clone(pool, hdrs)); |
| 116 | } |
| 117 | |
| 118 | |
| 119 | h2_headers *h2_headers_create(int status, const apr_table_t *headers_in, |
no test coverage detected