MCPcopy Create free account
hub / github.com/apache/httpd / h2_ihash_create

Function h2_ihash_create

modules/http2/h2_util.c:225–231  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

223}
224
225h2_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
233unsigned int h2_ihash_count(h2_ihash_t *ih)
234{

Callers 1

h2_mplx_c1_createFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected