| 183 | } |
| 184 | |
| 185 | h2_headers *h2_headers_copy(apr_pool_t *pool, h2_headers *h) |
| 186 | { |
| 187 | return h2_headers_create(h->status, h->headers, h->notes, h->raw_bytes, pool); |
| 188 | } |
| 189 | |
| 190 | h2_headers *h2_headers_clone(apr_pool_t *pool, h2_headers *h) |
| 191 | { |
nothing calls this directly
no test coverage detected