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

Function h2_proxy_iq_create

modules/http2/h2_proxy_util.c:221–230  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

219 h2_proxy_iq_cmp *cmp, void *ctx);
220
221h2_proxy_iqueue *h2_proxy_iq_create(apr_pool_t *pool, int capacity)
222{
223 h2_proxy_iqueue *q = apr_pcalloc(pool, sizeof(h2_proxy_iqueue));
224 if (q) {
225 q->pool = pool;
226 iq_grow(q, capacity);
227 q->nelts = 0;
228 }
229 return q;
230}
231
232int h2_proxy_iq_empty(h2_proxy_iqueue *q)
233{

Callers 1

h2_proxy_session_setupFunction · 0.85

Calls 1

iq_growFunction · 0.70

Tested by

no test coverage detected