| 108 | } |
| 109 | |
| 110 | void SplitHostPort(std::string in, uint16_t& portOut, std::string& hostOut) |
| 111 | { |
| 112 | size_t colon = in.find_last_of(':'); |
| 113 | // if a : is found, and it either follows a [...], or no other : is in the string, treat it as port separator |
| 114 | bool fHaveColon = colon != in.npos; |
| 115 | bool fBracketed = fHaveColon && (in[0] == '[' && in[colon - 1] == ']'); // if there is a colon, and in[0]=='[', colon is not 0, so in[colon-1] is safe |
| 116 | bool fMultiColon{fHaveColon && colon != 0 && (in.find_last_of(':', colon - 1) != in.npos)}; |
| 117 | if (fHaveColon && (colon == 0 || fBracketed || !fMultiColon)) { |
| 118 | uint16_t n; |
| 119 | if (ParseUInt16(in.substr(colon + 1), &n)) { |
| 120 | in = in.substr(0, colon); |
| 121 | portOut = n; |
| 122 | } |
| 123 | } |
| 124 | if (in.size() > 0 && in[0] == '[' && in[in.size() - 1] == ']') { |
| 125 | hostOut = in.substr(1, in.size() - 2); |
| 126 | } else { |
| 127 | hostOut = in; |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | std::string EncodeBase64(Span<const unsigned char> input) |
| 132 | { |