| Index: runtime/bin/socket_patch.dart
|
| diff --git a/runtime/bin/socket_patch.dart b/runtime/bin/socket_patch.dart
|
| index 27329f139abece776673f92b4604f1e6b353c515..129829893a3b22e6e9d6c3777bed1cea1c4b1c16 100644
|
| --- a/runtime/bin/socket_patch.dart
|
| +++ b/runtime/bin/socket_patch.dart
|
| @@ -84,6 +84,8 @@ class _InternetAddress implements InternetAddress {
|
|
|
| String get host => _host != null ? _host : address;
|
|
|
| + List<int> get rawAddress => new Uint8List.fromList(_in_addr);
|
| +
|
| bool get isLoopback {
|
| switch (type) {
|
| case InternetAddressType.IP_V4:
|
|
|