Searched refs:reqpath (Results 1 – 1 of 1) sorted by relevance
/third_party/nghttp2/src/ |
D | HttpServer.cc | 1237 auto reqpath = stream->header.path; in prepare_response() local 1238 if (reqpath.empty()) { in prepare_response() 1253 auto query_pos = std::find(std::begin(reqpath), std::end(reqpath), '?'); in prepare_response() 1254 if (query_pos != std::end(reqpath)) { in prepare_response() 1257 StringRef{query_pos, std::end(reqpath)})) { in prepare_response() 1260 raw_path = StringRef{std::begin(reqpath), query_pos}; in prepare_response() 1261 raw_query = StringRef{query_pos, std::end(reqpath)}; in prepare_response() 1263 raw_path = reqpath; in prepare_response() 1350 auto reqpath = concat_string_ref(stream->balloc, raw_path, in prepare_response() local 1353 prepare_redirect_response(stream, hd, reqpath, 301); in prepare_response()
|