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

Function skip_ptoken

modules/http2/h2_proxy_util.c:853–866  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

851}
852
853static int skip_ptoken(link_ctx *ctx)
854{
855 if (skip_ws(ctx)) {
856 int i;
857 for (i = ctx->i; i < ctx->slen && ptoken_char(ctx->s[i]); ++i) {
858 /* nop */
859 }
860 if (i > ctx->i) {
861 ctx->i = i;
862 return 1;
863 }
864 }
865 return 0;
866}
867
868
869static int read_link(link_ctx *ctx)

Callers 1

skip_pvalueFunction · 0.70

Calls 2

skip_wsFunction · 0.70
ptoken_charFunction · 0.70

Tested by

no test coverage detected