Lines Matching refs:port
311 if (input.size() >= 6) { //6:Maximum port number size
316 const int maxPort = 65535; // 65535:Maximum port number
324 urlinfo.port = -1;
329 urlinfo.port = it;
885 std::string port = strHost.substr(pos + 1);
887 AnalysisPort(port, urlinfo, flags);
933 std::string port = strHost.substr(pos + 1);
935 AnalysisPort(port, urlinfo, flags);
970 std::string port = strHost.substr(pos + 1);
972 AnalysisPort(port, urlinfo, flags);
1022 std::string port = strHost.substr(pos + 1);
1024 AnalysisPort(port, urlinfo, flags);
1095 urlData.port = baseInfo.port;
1403 temp = std::to_string(urlData_.port);
1415 temp += std::to_string(urlData_.port);
1526 void SplitString(const std::string& input, std::string& strHost, std::string& port)
1535 port = input.substr(pos);
1548 std::string port = "";
1549 SplitString(input, strHost, port);
1566 if (port.size() > 0) {
1567 size_t strlen = port.size();
1569 if ((port[pos] == '?') || (port[pos] == '#') || (port[pos] == '/') || (port[pos] == '\\')) {
1570 port = port.substr(0, pos);
1574 if (port.size() > 0) {
1577 AnalysisPort(port, thisport, thisFlags);
1580 urlData_.port = thisport.port;
1588 std::string port = input;
1589 size_t portlen = port.size();
1591 if ((port[pos] == '?') || (port[pos] == '#') || (port[pos] == '/') || (port[pos] == '\\')) {
1592 port = port.substr(0, pos);
1596 if (port.size() > 0) {
1599 AnalysisPort(port, thisport, thisFlags);
1602 urlData_.port = thisport.port;