| 77 | } |
| 78 | |
| 79 | h2_proxy_ihash_t *h2_proxy_ihash_create(apr_pool_t *pool, size_t offset_of_int) |
| 80 | { |
| 81 | h2_proxy_ihash_t *ih = apr_pcalloc(pool, sizeof(h2_proxy_ihash_t)); |
| 82 | ih->hash = apr_hash_make_custom(pool, ihash); |
| 83 | ih->ioff = offset_of_int; |
| 84 | return ih; |
| 85 | } |
| 86 | |
| 87 | size_t h2_proxy_ihash_count(h2_proxy_ihash_t *ih) |
| 88 | { |
no outgoing calls
no test coverage detected