Searched refs:reqpath (Results 1 – 1 of 1) sorted by relevance
/third_party/nghttp2/src/ |
D | HttpServer.cc | 1220 auto reqpath = stream->header.path; in prepare_response() local 1221 if (reqpath.empty()) { in prepare_response() 1236 auto query_pos = std::find(std::begin(reqpath), std::end(reqpath), '?'); in prepare_response() 1237 if (query_pos != std::end(reqpath)) { in prepare_response() 1240 StringRef{query_pos, std::end(reqpath)})) { in prepare_response() 1243 raw_path = StringRef{std::begin(reqpath), query_pos}; in prepare_response() 1244 raw_query = StringRef{query_pos, std::end(reqpath)}; in prepare_response() 1246 raw_path = reqpath; in prepare_response() 1333 auto reqpath = concat_string_ref(stream->balloc, raw_path, in prepare_response() local 1336 prepare_redirect_response(stream, hd, reqpath, 301); in prepare_response()
|