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

Function read_pvalue

modules/http2/h2_push.c:229–237  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

227}
228
229static int read_pvalue(link_ctx *ctx, const char **pvalue)
230{
231 if (skip_ws(ctx) && read_chr(ctx, '=')) {
232 if (read_qstring(ctx, pvalue) || read_ptoken(ctx, pvalue)) {
233 return 1;
234 }
235 }
236 return 0;
237}
238
239static int read_param(link_ctx *ctx)
240{

Callers 1

read_paramFunction · 0.85

Calls 4

read_qstringFunction · 0.85
read_ptokenFunction · 0.85
skip_wsFunction · 0.70
read_chrFunction · 0.70

Tested by

no test coverage detected