Chromium Code Reviews| 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/ip_endpoint.h" | |
| 12 #include "net/base/net_util.h" | 13 #include "net/base/net_util.h" |
|
eroman
2012/05/04 01:08:41
Can this be deleted now?
szym
2012/05/04 02:38:29
Yes!
| |
| 13 #include "net/base/sys_addrinfo.h" | |
| 14 | 14 |
| 15 namespace net { | 15 namespace net { |
| 16 | 16 |
| 17 HostPortPair::HostPortPair() : port_(0) {} | 17 HostPortPair::HostPortPair() : port_(0) {} |
| 18 HostPortPair::HostPortPair(const std::string& in_host, uint16 in_port) | 18 HostPortPair::HostPortPair(const std::string& in_host, uint16 in_port) |
| 19 : host_(in_host), port_(in_port) {} | 19 : host_(in_host), port_(in_port) {} |
| 20 | 20 |
| 21 // static | 21 // static |
| 22 HostPortPair HostPortPair::FromURL(const GURL& url) { | 22 HostPortPair HostPortPair::FromURL(const GURL& url) { |
| 23 return HostPortPair(url.HostNoBrackets(), url.EffectiveIntPort()); | 23 return HostPortPair(url.HostNoBrackets(), url.EffectiveIntPort()); |
| 24 } | 24 } |
| 25 | 25 |
| 26 // static | 26 // static |
| 27 HostPortPair HostPortPair::FromAddrInfo(const struct addrinfo* ai) { | 27 HostPortPair HostPortPair::FromIPEndPoint(const IPEndPoint& ipe) { |
| 28 return HostPortPair(NetAddressToString(ai), | 28 return HostPortPair(ipe.ToStringWithoutPort(), ipe.port()); |
| 29 GetPortFromSockaddr(ai->ai_addr, ai->ai_addrlen)); | |
| 30 } | 29 } |
| 31 | 30 |
| 32 HostPortPair HostPortPair::FromString(const std::string& str) { | 31 HostPortPair HostPortPair::FromString(const std::string& str) { |
| 33 std::vector<std::string> key_port; | 32 std::vector<std::string> key_port; |
| 34 base::SplitString(str, ':', &key_port); | 33 base::SplitString(str, ':', &key_port); |
| 35 if (key_port.size() != 2) | 34 if (key_port.size() != 2) |
| 36 return HostPortPair(); | 35 return HostPortPair(); |
| 37 int port; | 36 int port; |
| 38 if (!base::StringToInt(key_port[1], &port)) | 37 if (!base::StringToInt(key_port[1], &port)) |
| 39 return HostPortPair(); | 38 return HostPortPair(); |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 52 // Check to see if the host is an IPv6 address. If so, added brackets. | 51 // Check to see if the host is an IPv6 address. If so, added brackets. |
| 53 if (host_.find(':') != std::string::npos) { | 52 if (host_.find(':') != std::string::npos) { |
| 54 DCHECK_NE(host_[0], '['); | 53 DCHECK_NE(host_[0], '['); |
| 55 return base::StringPrintf("[%s]", host_.c_str()); | 54 return base::StringPrintf("[%s]", host_.c_str()); |
| 56 } | 55 } |
| 57 | 56 |
| 58 return host_; | 57 return host_; |
| 59 } | 58 } |
| 60 | 59 |
| 61 } // namespace net | 60 } // namespace net |
| OLD | NEW |