MCPcopy Create free account
hub / github.com/apache/trafficserver / url_parse_regex

Function url_parse_regex

src/proxy/hdrs/URL.cc:1239–1244  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1237}
1238
1239ParseResult
1240url_parse_regex(HdrHeap *heap, URLImpl *url, const char **start, const char *end, bool copy_strings_p)
1241{
1242 ParseResult zret = url_parse_scheme(heap, url, start, end, copy_strings_p);
1243 return PARSE_RESULT_CONT == zret ? url_parse_http_regex(heap, url, start, end, copy_strings_p) : zret;
1244}
1245
1246/**
1247 Parse internet URL.

Callers 1

parse_regexMethod · 0.85

Calls 2

url_parse_schemeFunction · 0.85
url_parse_http_regexFunction · 0.85

Tested by

no test coverage detected