Lines Matching defs:reqpath
1237 auto reqpath = stream->header.path;
1238 if (reqpath.empty()) {
1253 auto query_pos = std::find(std::begin(reqpath), std::end(reqpath), '?');
1254 if (query_pos != std::end(reqpath)) {
1257 StringRef{query_pos, std::end(reqpath)})) {
1260 raw_path = StringRef{std::begin(reqpath), query_pos};
1261 raw_query = StringRef{query_pos, std::end(reqpath)};
1263 raw_path = reqpath;
1350 auto reqpath = concat_string_ref(stream->balloc, raw_path,
1353 prepare_redirect_response(stream, hd, reqpath, 301);