| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "net/base/host_port_pair.h" | 5 #include "net/base/host_port_pair.h" |
| 6 | 6 |
| 7 #include "base/string_number_conversions.h" | 7 #include "base/string_number_conversions.h" |
| 8 #include "base/string_split.h" | 8 #include "base/string_split.h" |
| 9 #include "base/string_util.h" | 9 #include "base/string_util.h" |
| 10 #include "base/stringprintf.h" | 10 #include "base/stringprintf.h" |
| 11 #include "googleurl/src/gurl.h" | 11 #include "googleurl/src/gurl.h" |
| 12 #include "net/base/net_util.h" | 12 #include "net/base/ip_endpoint.h" |
| 13 #include "net/base/sys_addrinfo.h" | |
| 14 | 13 |
| 15 namespace net { | 14 namespace net { |
| 16 | 15 |
| 17 HostPortPair::HostPortPair() : port_(0) {} | 16 HostPortPair::HostPortPair() : port_(0) {} |
| 18 HostPortPair::HostPortPair(const std::string& in_host, uint16 in_port) | 17 HostPortPair::HostPortPair(const std::string& in_host, uint16 in_port) |
| 19 : host_(in_host), port_(in_port) {} | 18 : host_(in_host), port_(in_port) {} |
| 20 | 19 |
| 21 // static | 20 // static |
| 22 HostPortPair HostPortPair::FromURL(const GURL& url) { | 21 HostPortPair HostPortPair::FromURL(const GURL& url) { |
| 23 return HostPortPair(url.HostNoBrackets(), url.EffectiveIntPort()); | 22 return HostPortPair(url.HostNoBrackets(), url.EffectiveIntPort()); |
| 24 } | 23 } |
| 25 | 24 |
| 26 // static | 25 // static |
| 27 HostPortPair HostPortPair::FromAddrInfo(const struct addrinfo* ai) { | 26 HostPortPair HostPortPair::FromIPEndPoint(const IPEndPoint& ipe) { |
| 28 return HostPortPair(NetAddressToString(ai), | 27 return HostPortPair(ipe.ToStringWithoutPort(), ipe.port()); |
| 29 GetPortFromSockaddr(ai->ai_addr, ai->ai_addrlen)); | |
| 30 } | 28 } |
| 31 | 29 |
| 32 HostPortPair HostPortPair::FromString(const std::string& str) { | 30 HostPortPair HostPortPair::FromString(const std::string& str) { |
| 33 std::vector<std::string> key_port; | 31 std::vector<std::string> key_port; |
| 34 base::SplitString(str, ':', &key_port); | 32 base::SplitString(str, ':', &key_port); |
| 35 if (key_port.size() != 2) | 33 if (key_port.size() != 2) |
| 36 return HostPortPair(); | 34 return HostPortPair(); |
| 37 int port; | 35 int port; |
| 38 if (!base::StringToInt(key_port[1], &port)) | 36 if (!base::StringToInt(key_port[1], &port)) |
| 39 return HostPortPair(); | 37 return HostPortPair(); |
| (...skipping 12 matching lines...) Expand all Loading... |
| 52 // Check to see if the host is an IPv6 address. If so, added brackets. | 50 // Check to see if the host is an IPv6 address. If so, added brackets. |
| 53 if (host_.find(':') != std::string::npos) { | 51 if (host_.find(':') != std::string::npos) { |
| 54 DCHECK_NE(host_[0], '['); | 52 DCHECK_NE(host_[0], '['); |
| 55 return base::StringPrintf("[%s]", host_.c_str()); | 53 return base::StringPrintf("[%s]", host_.c_str()); |
| 56 } | 54 } |
| 57 | 55 |
| 58 return host_; | 56 return host_; |
| 59 } | 57 } |
| 60 | 58 |
| 61 } // namespace net | 59 } // namespace net |
| OLD | NEW |