| 83 | } |
| 84 | |
| 85 | h2_headers *h2_bucket_headers_get(apr_bucket *b) |
| 86 | { |
| 87 | if (H2_BUCKET_IS_HEADERS(b)) { |
| 88 | return ((h2_bucket_headers *)b->data)->headers; |
| 89 | } |
| 90 | return NULL; |
| 91 | } |
| 92 | |
| 93 | static void bucket_destroy(void *data) |
| 94 | { |
no outgoing calls
no test coverage detected