Home
last modified time | relevance | path

Searched refs:hoststring (Results 1 – 1 of 1) sorted by relevance

/external/webrtc/talk/app/webrtc/
Dpeerconnection.cc261 std::string hoststring; in ParseIceServerUrl() local
265 &hoststring)) { in ParseIceServerUrl()
271 RTC_DCHECK(!hoststring.empty()); in ParseIceServerUrl()
275 rtc::tokenize_with_empty_tokens(hoststring, '@', &tokens); in ParseIceServerUrl()
279 LOG(LS_WARNING) << "Invalid user@hostname format: " << hoststring; in ParseIceServerUrl()
284 LOG(LS_WARNING) << "Invalid user@hostname format: " << hoststring; in ParseIceServerUrl()
288 hoststring = tokens[1]; in ParseIceServerUrl()
290 hoststring = tokens[0]; in ParseIceServerUrl()
300 if (!ParseHostnameAndPortFromString(hoststring, &address, &port)) { in ParseIceServerUrl()