Home
last modified time | relevance | path

Searched refs:reqhost (Results 1 – 2 of 2) sorted by relevance

/haiku/src/apps/poorman/libhttpd/
H A Dlibhttpd.c1386 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() local
2019 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 …]
H A Dlibhttpd.h125 char* reqhost; member