Index: dart/sdk/lib/io/http_impl.dart |
=================================================================== |
--- dart/sdk/lib/io/http_impl.dart (revision 29908) |
+++ dart/sdk/lib/io/http_impl.dart (working copy) |
@@ -2201,7 +2201,7 @@ |
if (socket == null) return null; |
try { |
_HttpConnectionInfo info = new _HttpConnectionInfo(); |
- info.remoteHost = socket.remoteHost; |
+ info.remoteAddress = socket.remoteAddress; |
info.remotePort = socket.remotePort; |
info.localPort = socket.port; |
return info; |
@@ -2209,7 +2209,7 @@ |
return null; |
} |
- String remoteHost; |
+ InternetAddress remoteAddress; |
int remotePort; |
int localPort; |
} |
@@ -2268,7 +2268,7 @@ |
InternetAddress get address => _socket.address; |
- String get remoteHost => _socket.remoteHost; |
+ InternetAddress get remoteAddress => _socket.remoteAddress; |
int get remotePort => _socket.remotePort; |