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

Function skip_param

modules/http2/h2_proxy_util.c:909–918  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

907}
908
909static int skip_param(link_ctx *ctx)
910{
911 if (skip_ws(ctx) && read_chr(ctx, ';')) {
912 if (skip_pname(ctx)) {
913 skip_pvalue(ctx); /* value is optional */
914 return 1;
915 }
916 }
917 return 0;
918}
919
920static int read_sep(link_ctx *ctx)
921{

Callers 1

Calls 4

skip_wsFunction · 0.70
read_chrFunction · 0.70
skip_pnameFunction · 0.70
skip_pvalueFunction · 0.70

Tested by

no test coverage detected