| Index: runtime/bin/socket.dart
|
| diff --git a/runtime/bin/socket.dart b/runtime/bin/socket.dart
|
| index 97ede5fb9852264aae733cd86d13dfc40b463d50..e8b53bd9664d9bbbb261e14c35848a341cae0a91 100644
|
| --- a/runtime/bin/socket.dart
|
| +++ b/runtime/bin/socket.dart
|
| @@ -112,6 +112,11 @@ interface Socket extends Hashable default _Socket {
|
| int get remotePort();
|
|
|
| /**
|
| + * Returns the remote host connected to by this socket.
|
| + */
|
| + String get remoteHost();
|
| +
|
| + /**
|
| * Closes the socket. Calling [close] will never throw an exception
|
| * and calling it several times is supported. If [halfClose] is true
|
| * the socket will only be closed for writing and it might still be
|
|
|