Searched defs:port_str (Results 1 - 1 of 1) sorted by relevance

/httpd/modules/cache/
H A Dcache_storage.c433 char *port_str, *hn, *lcs; local
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
[all...]

Completed in 11 milliseconds