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

Function ap_unescape_url_proxy

server/util.c:1964–1970  ·  view source on GitHub ↗

IFDEF these out until they've been thought through. * Just a germ of an API extension for now */

Source from the content-addressed store, hash-verified

1962 * Just a germ of an API extension for now
1963 */
1964AP_DECLARE(int) ap_unescape_url_proxy(char *url)
1965{
1966 /* leave RFC1738 reserved characters intact, * so proxied URLs
1967 * don't get mangled. Where does that leave encoded '&' ?
1968 */
1969 return unescape_url(url, NULL, "/;?", 0);
1970}
1971AP_DECLARE(int) ap_unescape_url_reserved(char *url, const char *reserved)
1972{
1973 return unescape_url(url, NULL, reserved);

Callers

nothing calls this directly

Calls 1

unescape_urlFunction · 0.85

Tested by

no test coverage detected