Lines Matching defs:uri
221 apr_uri_t uri;
239 /* we break the URL into host, port, uri */
240 if (APR_SUCCESS != apr_uri_parse_hostinfo(p, url, &uri)) {
247 "connecting %s to %s:%d", url, uri.hostname, uri.port);
250 connectname = proxyname ? proxyname : uri.hostname;
251 connectport = proxyname ? proxyport : uri.port;
265 if (ap_proxy_checkproxyblock(r, conf, uri.hostname,
276 if(!allowed_port(c_conf, uri.port)) {
372 "CONNECT %s HTTP/1.0" CRLF, r->uri);