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

/httpd/modules/proxy/
H A Dproxy_util.c728 /* Return TRUE if host "host" is equal to host2 "host2" */
732 const char *host2 = proxy_get_host_of_request(r); local
736 if (host == NULL || host2 == NULL) {
740 h2_len = strlen(host2);
754 /* Ignore trailing dots in host2 comparison: */
755 while (h2_len > 0 && host2[h2_len - 1] == '.') {
762 && strncasecmp(host, host2, h1_len) == 0;

Completed in 30 milliseconds