| 144 | } |
| 145 | |
| 146 | apr_size_t h2_bucket_headers_headers_length(apr_bucket *b) |
| 147 | { |
| 148 | h2_headers *h = h2_bucket_headers_get(b); |
| 149 | return h? h2_headers_length(h) : 0; |
| 150 | } |
| 151 | |
| 152 | h2_headers *h2_headers_rcreate(request_rec *r, int status, |
| 153 | const apr_table_t *header, apr_pool_t *pool) |
nothing calls this directly
no test coverage detected