OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:first_colon
(Results
1 - 1
of
1
) sorted by null
/system/extras/multinetwork/
httpurl.cpp
83
const auto
first_colon
= parameters->host.find_first_of(':');
local
84
if (
first_colon
!= std::string::npos) {
85
parameters->port = parameters->host.substr(
first_colon
+ 1);
86
parameters->hostname = parameters->host.substr(0,
first_colon
);
Completed in 125 milliseconds