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

Function h2_iq_mshift

modules/http2/h2_util.c:448–458  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

446}
447
448size_t h2_iq_mshift(h2_iqueue *q, int *pint, size_t max)
449{
450 size_t i;
451 for (i = 0; i < max; ++i) {
452 pint[i] = h2_iq_shift(q);
453 if (pint[i] == 0) {
454 break;
455 }
456 }
457 return i;
458}
459
460static void iq_grow(h2_iqueue *q, int nlen)
461{

Callers

nothing calls this directly

Calls 1

h2_iq_shiftFunction · 0.85

Tested by

no test coverage detected