IFDEF these out until they've been thought through. * Just a germ of an API extension for now */
| 1962 | * Just a germ of an API extension for now |
| 1963 | */ |
| 1964 | AP_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 | } |
| 1971 | AP_DECLARE(int) ap_unescape_url_reserved(char *url, const char *reserved) |
| 1972 | { |
| 1973 | return unescape_url(url, NULL, reserved); |
nothing calls this directly
no test coverage detected