| 219 | h2_proxy_iq_cmp *cmp, void *ctx); |
| 220 | |
| 221 | h2_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 | |
| 232 | int h2_proxy_iq_empty(h2_proxy_iqueue *q) |
| 233 | { |
no test coverage detected