DEPRECATED */
| 2205 | |
| 2206 | /* DEPRECATED */ |
| 2207 | PROXY_DECLARE(char *) ap_proxy_define_match_worker(apr_pool_t *p, |
| 2208 | proxy_worker **worker, |
| 2209 | proxy_balancer *balancer, |
| 2210 | proxy_server_conf *conf, |
| 2211 | const char *url, |
| 2212 | int do_malloc) |
| 2213 | { |
| 2214 | return ap_proxy_define_worker_ex(p, worker, balancer, conf, url, |
| 2215 | AP_PROXY_WORKER_IS_MATCH | |
| 2216 | (do_malloc ? AP_PROXY_WORKER_IS_MALLOCED |
| 2217 | : 0)); |
| 2218 | } |
| 2219 | |
| 2220 | /* |
| 2221 | * Create an already defined worker and free up memory |
nothing calls this directly
no test coverage detected