Searched refs:reqhost (Results 1 – 2 of 2) sorted by relevance
1386 if ( hc->reqhost[0] != '\0' ) in vhost_map()1387 hc->hostname = hc->reqhost; in vhost_map()1714 httpd_realloc_str( &hc->reqhost, &hc->maxreqhost, 0 ); in httpd_get_conn()1771 hc->reqhost[0] = '\0'; in httpd_get_conn()1975 char* reqhost; in httpd_parse_request() local2019 reqhost = url + 7; in httpd_parse_request()2020 url = strchr( reqhost, '/' ); in httpd_parse_request()2027 if ( strchr( reqhost, '/' ) != (char*) 0 || reqhost[0] == '.' ) in httpd_parse_request()2032 httpd_realloc_str( &hc->reqhost, &hc->maxreqhost, strlen( reqhost ) ); in httpd_parse_request()2033 (void) strcpy( hc->reqhost, reqhost ); in httpd_parse_request()[all …]
125 char* reqhost; member