git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89837
13f79535-47bb-0310-9956-
ffa450edef68
/* proxy_util.c */
-PROXY_DECLARE(request_rec *)make_fake_req(conn_rec *c, request_rec *r);
+PROXY_DECLARE(request_rec *)ap_proxy_make_fake_req(conn_rec *c, request_rec *r);
PROXY_DECLARE(int) ap_proxy_hex2c(const char *x);
PROXY_DECLARE(void) ap_proxy_c2hex(int ch, char *x);
PROXY_DECLARE(char *)ap_proxy_canonenc(apr_pool_t *p, const char *x, int len, enum enctype t,
* filter chain
*/
- rp = make_fake_req(origin, r);
+ rp = ap_proxy_make_fake_req(origin, r);
apr_brigade_cleanup(bb);
return q;
}
-PROXY_DECLARE(request_rec *)make_fake_req(conn_rec *c, request_rec *r)
+PROXY_DECLARE(request_rec *)ap_proxy_make_fake_req(conn_rec *c, request_rec *r)
{
request_rec *rp = apr_pcalloc(c->pool, sizeof(*r));
core_request_config *req_cfg;