Symbol: http_path
usr.sbin/httpd/server_fcgi.c
169
: desc->http_path;
usr.sbin/httpd/server_file.c
103
if ((encodedpath = url_encode(desc->http_path)) == NULL)
usr.sbin/httpd/server_file.c
119
if (asprintf(&newpath, "%s%s", desc->http_path,
usr.sbin/httpd/server_file.c
229
desc->http_path_alias : desc->http_path,
usr.sbin/httpd/server_file.c
233
errstr = desc->http_path;
usr.sbin/httpd/server_file.c
240
desc->http_path_alias : desc->http_path;
usr.sbin/httpd/server_file.c
506
stripped = server_root_strip(desc->http_path, srv_conf->strip);
usr.sbin/httpd/server_file.c
517
if ((escapedpath = escape_html(desc->http_path)) == NULL)
usr.sbin/httpd/server_file.c
651
server_abort_http(clt, code, desc->http_path);
usr.sbin/httpd/server_http.c
102
free(desc->http_path);
usr.sbin/httpd/server_http.c
103
desc->http_path = NULL;
usr.sbin/httpd/server_http.c
1163
if ((path = url_encode(desc->http_path)) == NULL)
usr.sbin/httpd/server_http.c
1231
if ((path = url_encode(desc->http_path)) == NULL)
usr.sbin/httpd/server_http.c
1302
if (desc->http_path == NULL ||
usr.sbin/httpd/server_http.c
1303
(desc->http_path_orig = strdup(desc->http_path)) == NULL)
usr.sbin/httpd/server_http.c
1307
if (url_decode(desc->http_path) == NULL)
usr.sbin/httpd/server_http.c
1311
if (canonicalize_path(desc->http_path, path, sizeof(path)) == NULL)
usr.sbin/httpd/server_http.c
1313
free(desc->http_path);
usr.sbin/httpd/server_http.c
1314
if ((desc->http_path = strdup(path)) == NULL)
usr.sbin/httpd/server_http.c
1417
if ((srv_conf = server_getlocation(clt, desc->http_path)) == NULL) {
usr.sbin/httpd/server_http.c
1418
server_abort_http(clt, 500, desc->http_path);
usr.sbin/httpd/server_http.c
1448
desc->http_path, desc->http_query ? desc->http_query : "",
usr.sbin/httpd/server_http.c
1903
if (desc->http_path &&
usr.sbin/httpd/server_http.c
1904
(path = url_encode(desc->http_path)) == NULL)
usr.sbin/httpd/server_http.c
1912
desc->http_path == NULL ? "" : path,
usr.sbin/httpd/server_http.c
1952
if (desc->http_path &&
usr.sbin/httpd/server_http.c
1953
(path = url_encode(desc->http_path)) == NULL)
usr.sbin/httpd/server_http.c
1965
desc->http_path == NULL ? "" : path,
usr.sbin/httpd/server_http.c
2009
if (desc->http_path &&
usr.sbin/httpd/server_http.c
2010
(path = url_encode(desc->http_path)) == NULL)
usr.sbin/httpd/server_http.c
2014
desc->http_path == NULL ? "" : path);
usr.sbin/httpd/server_http.c
335
desc->http_path = strdup(value);
usr.sbin/httpd/server_http.c
336
if (desc->http_path == NULL)
usr.sbin/httpd/server_http.c
339
http_version = strchr(desc->http_path, ' ');
usr.sbin/httpd/server_http.c
373
query = strchr(desc->http_path, '?');
usr.sbin/relayd/relay_http.c
1260
relay_bufferevent_print(dst, desc->http_path) == -1 ||
usr.sbin/relayd/relay_http.c
1476
else if (fnmatch(kv->kv_key, desc->http_path, 0) == FNM_NOMATCH)
usr.sbin/relayd/relay_http.c
153
free(desc->http_path);
usr.sbin/relayd/relay_http.c
154
desc->http_path = NULL;
usr.sbin/relayd/relay_http.c
2099
desc->http_path = strdup(value);
usr.sbin/relayd/relay_http.c
2100
if (desc->http_path == NULL)
usr.sbin/relayd/relay_http.c
2103
desc->http_version = strchr(desc->http_path, ' ');
usr.sbin/relayd/relay_http.c
2108
desc->http_query = strchr(desc->http_path, '?');
usr.sbin/relayd/relay_http.c
374
if (parse_url(desc->http_path,
usr.sbin/relayd/relay_http.c
873
if (desc->http_path == NULL)
usr.sbin/relayd/relay_http.c
883
__func__, host, desc->http_path,
usr.sbin/relayd/relay_http.c
901
if ((pp = strdup(desc->http_path)) == NULL) {