MCPcopy Create free account
hub / github.com/ElementsProject/elements / SplitHostPort

Function SplitHostPort

src/util/strencodings.cpp:110–129  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

108}
109
110void 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
131std::string EncodeBase64(Span<const unsigned char> input)
132{

Callers 6

HTTPBindAddressesFunction · 0.85
CallRPCFunction · 0.85
LookupFunction · 0.85
ConnectNodeMethod · 0.85
TestSplitHostFunction · 0.85
FUZZ_TARGETFunction · 0.85

Calls 2

ParseUInt16Function · 0.85
sizeMethod · 0.45

Tested by 2

TestSplitHostFunction · 0.68
FUZZ_TARGETFunction · 0.68