Index: jingle/notifier/base/chrome_async_socket.cc |
=================================================================== |
--- jingle/notifier/base/chrome_async_socket.cc (revision 136430) |
+++ jingle/notifier/base/chrome_async_socket.cc (working copy) |
@@ -105,7 +105,8 @@ |
DCHECK_EQ(false, weak_factory_.HasWeakPtrs()); |
- net::HostPortPair dest_host_port_pair(address.IPAsString(), address.port()); |
+ net::HostPortPair dest_host_port_pair((address.hostname().empty() ? |
akalin
2012/05/11 18:04:05
this should actually be:
... dest_host_port_pair(
Mallinath (Gone from Chromium)
2012/05/11 18:10:40
What should happen if hostname is empty? As talk_b
akalin
2012/05/11 18:13:02
Actually, this doesn't look like it was a bug befo
Mallinath (Gone from Chromium)
2012/05/11 20:52:45
Done.
|
+ address.ipaddr().ToString() : address.hostname()), address.port()); |
transport_socket_.reset( |
client_socket_factory_->CreateTransportClientSocket( |