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

Function skip_qstring

modules/http2/h2_proxy_util.c:841–851  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

839}
840
841static int skip_qstring(link_ctx *ctx)
842{
843 if (skip_ws(ctx) && read_chr(ctx, '\"')) {
844 int end;
845 if (find_chr(ctx, '\"', &end)) {
846 ctx->i = end + 1;
847 return 1;
848 }
849 }
850 return 0;
851}
852
853static int skip_ptoken(link_ctx *ctx)
854{

Callers 1

skip_pvalueFunction · 0.70

Calls 3

skip_wsFunction · 0.70
read_chrFunction · 0.70
find_chrFunction · 0.70

Tested by

no test coverage detected