Lines Matching defs:url
38 apr_uri_t url;
377 serf_bucket_headers_setn(hdrs_bkt, "Host", ctx->conf->url.hostname);
421 if (strcmp(conf->url.scheme, "cluster") == 0) {
433 conf->url.hostname,
437 "SerfCluster: unable to find cluster %s", conf->url.hostname);
482 rv = apr_sockaddr_info_get(&address, conf->url.hostname,
483 APR_UNSPEC, conf->url.port, 0,
488 ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, APLOGNO(01128) "Unable to resolve: %s", conf->url.hostname);
515 if (strcasecmp(conf->url.scheme, "https") == 0) {
627 rv = apr_uri_parse(cmd->pool, argv[0], &conf->url);
630 return "Unable to parse SerfPass url.";
633 if (!conf->url.scheme) {
634 return "Need scheme part in url.";
638 if (!conf->url.port) {
639 conf->url.port = apr_uri_port_of_scheme(conf->url.scheme);
642 if (!conf->url.path) {
643 conf->url.path = "/";