Lines Matching defs:scheme
27 static apr_status_t ap_proxy_http_cleanup(const char *scheme,
33 * scheme is the scheme for the URL
35 * def_port is the default port for this scheme.
42 const char *scheme;
48 scheme = "http";
52 scheme = "https";
57 port = def_port = ap_proxy_port_of_scheme(scheme);
108 r->filename = apr_pstrcat(r->pool, "proxy:", scheme, "://", host, sport,
1885 ap_proxy_release_connection(backend->worker->s->scheme,
1924 ap_proxy_release_connection(backend->worker->s->scheme,
1962 apr_status_t ap_proxy_http_cleanup(const char *scheme, request_rec *r,
1965 ap_proxy_release_connection(scheme, backend, r->server);
1985 char *scheme;
2006 /* find the scheme */
2012 scheme = apr_pstrmemdup(p, url, u - url);
2013 /* scheme is lowercase */
2014 ap_str_tolower(scheme);
2016 if (strcmp(scheme, "https") == 0) {
2026 else if (!(strcmp(scheme, "http") == 0 || (strcmp(scheme, "ftp") == 0 && proxyname))) {
2032 if (*scheme == 'h')