set up the minimal filter set */
| 874 | |
| 875 | /* set up the minimal filter set */ |
| 876 | PROXY_DECLARE(int) ap_proxy_pre_http_request(conn_rec *c, request_rec *r) |
| 877 | { |
| 878 | ap_add_input_filter("HTTP_IN", NULL, r, c); |
| 879 | return OK; |
| 880 | } |
| 881 | |
| 882 | PROXY_DECLARE(const char *) ap_proxy_location_reverse_map(request_rec *r, |
| 883 | proxy_dir_conf *conf, const char *url) |
no test coverage detected