Searched defs:UrlData (Results 1 – 1 of 1) sorted by relevance
48 struct UrlData { struct49 int port = -1;50 bool isSpecialPath = false;51 std::vector<std::string> path;52 std::string password = "";53 std::string scheme = "";54 std::string query = "";55 std::string username = "";56 std::string fragment = "";80 void AnalysisFilePath(std::string& input, UrlData& urlinfo, argument