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

Function skip_pname

modules/http2/h2_proxy_util.c:884–897  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

882}
883
884static int skip_pname(link_ctx *ctx)
885{
886 if (skip_ws(ctx)) {
887 int i;
888 for (i = ctx->i; i < ctx->slen && attr_char(ctx->s[i]); ++i) {
889 /* nop */
890 }
891 if (i > ctx->i) {
892 ctx->i = i;
893 return 1;
894 }
895 }
896 return 0;
897}
898
899static int skip_pvalue(link_ctx *ctx)
900{

Callers 1

skip_paramFunction · 0.70

Calls 2

skip_wsFunction · 0.70
attr_charFunction · 0.70

Tested by

no test coverage detected