Symbol: http_path
usr.sbin/httpd/server_fcgi.c
168
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
516
stripped = server_root_strip(desc->http_path, srv_conf->strip);
usr.sbin/httpd/server_file.c
527
if ((escapedpath = escape_html(desc->http_path)) == NULL)
usr.sbin/httpd/server_file.c
661
server_abort_http(clt, code, desc->http_path);
usr.sbin/httpd/server_http.c
108
free(desc->http_path);
usr.sbin/httpd/server_http.c
109
desc->http_path = NULL;
usr.sbin/httpd/server_http.c
1207
if ((path = url_encode(desc->http_path)) == NULL)
usr.sbin/httpd/server_http.c
1276
if ((path = url_encode(desc->http_path)) == NULL)
usr.sbin/httpd/server_http.c
1349
if (desc->http_path == NULL ||
usr.sbin/httpd/server_http.c
1350
(desc->http_path_orig = strdup(desc->http_path)) == NULL)
usr.sbin/httpd/server_http.c
1354
if (url_decode(desc->http_path) == NULL)
usr.sbin/httpd/server_http.c
1358
if (canonicalize_path(desc->http_path, path, sizeof(path)) == NULL)
usr.sbin/httpd/server_http.c
1360
free(desc->http_path);
usr.sbin/httpd/server_http.c
1361
if ((desc->http_path = strdup(path)) == NULL)
usr.sbin/httpd/server_http.c
1463
if ((srv_conf = server_getlocation(clt, desc->http_path)) == NULL) {
usr.sbin/httpd/server_http.c
1464
server_abort_http(clt, 500, desc->http_path);
usr.sbin/httpd/server_http.c
1494
desc->http_path, desc->http_query ? desc->http_query : "",
usr.sbin/httpd/server_http.c
2040
if (desc->http_path &&
usr.sbin/httpd/server_http.c
2041
(path = url_encode(desc->http_path)) == NULL)
usr.sbin/httpd/server_http.c
2049
desc->http_path == NULL ? "" : path,
usr.sbin/httpd/server_http.c
2089
if (desc->http_path &&
usr.sbin/httpd/server_http.c
2090
(path = url_encode(desc->http_path)) == NULL)
usr.sbin/httpd/server_http.c
2102
desc->http_path == NULL ? "" : path,
usr.sbin/httpd/server_http.c
2146
if (desc->http_path &&
usr.sbin/httpd/server_http.c
2147
(path = url_encode(desc->http_path)) == NULL)
usr.sbin/httpd/server_http.c
2151
desc->http_path == NULL ? "" : path);
usr.sbin/httpd/server_http.c
338
desc->http_path = strdup(value);
usr.sbin/httpd/server_http.c
339
if (desc->http_path == NULL)
usr.sbin/httpd/server_http.c
342
http_version = strchr(desc->http_path, ' ');
usr.sbin/httpd/server_http.c
376
query = strchr(desc->http_path, '?');
usr.sbin/relayd/relay_http.c
1284
relay_bufferevent_print(dst, desc->http_path) == -1 ||
usr.sbin/relayd/relay_http.c
1499
else if (fnmatch(kv->kv_key, desc->http_path, 0) == FNM_NOMATCH)
usr.sbin/relayd/relay_http.c
152
free(desc->http_path);
usr.sbin/relayd/relay_http.c
153
desc->http_path = NULL;
usr.sbin/relayd/relay_http.c
2125
desc->http_path = strdup(value);
usr.sbin/relayd/relay_http.c
2126
if (desc->http_path == NULL)
usr.sbin/relayd/relay_http.c
2129
desc->http_version = strchr(desc->http_path, ' ');
usr.sbin/relayd/relay_http.c
2134
desc->http_query = strchr(desc->http_path, '?');
usr.sbin/relayd/relay_http.c
373
if (parse_url(desc->http_path,
usr.sbin/relayd/relay_http.c
897
if (desc->http_path == NULL)
usr.sbin/relayd/relay_http.c
907
__func__, host, desc->http_path,
usr.sbin/relayd/relay_http.c
925
if ((pp = strdup(desc->http_path)) == NULL) {