Lines Matching defs:port_str
433 char *port_str, *hn, *lcs;
529 if (parsed_uri->port_str) {
530 port_str = apr_pcalloc(p, strlen(parsed_uri->port_str) + 2);
531 port_str[0] = ':';
532 for (i = 0; parsed_uri->port_str[i]; i++) {
533 port_str[i + 1] = apr_tolower(parsed_uri->port_str[i]);
537 port_str = apr_psprintf(p, ":%u", apr_uri_port_of_scheme(scheme));
545 port_str = "";
549 if (conf->base_uri && conf->base_uri->port_str) {
550 port_str = conf->base_uri->port_str;
553 port_str = "";
557 port_str = apr_psprintf(p, ":%u", ap_get_server_port(r));
647 *key = apr_pstrcat(p, scheme, "://", hostname, port_str, path, "?",
651 *key = apr_pstrcat(p, scheme, "://", hostname, port_str, path, "?",