| 223 | } |
| 224 | |
| 225 | h2_ihash_t *h2_ihash_create(apr_pool_t *pool, size_t offset_of_int) |
| 226 | { |
| 227 | h2_ihash_t *ih = apr_pcalloc(pool, sizeof(h2_ihash_t)); |
| 228 | ih->hash = apr_hash_make_custom(pool, ihash); |
| 229 | ih->ioff = offset_of_int; |
| 230 | return ih; |
| 231 | } |
| 232 | |
| 233 | unsigned int h2_ihash_count(h2_ihash_t *ih) |
| 234 | { |