OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 part of "dart:io"; | 5 part of "io.dart"; |
6 | 6 |
7 /** | 7 /** |
8 * [InternetAddressType] is the type an [InternetAddress]. Currently, | 8 * [InternetAddressType] is the type an [InternetAddress]. Currently, |
9 * IP version 4 (IPv4) and IP version 6 (IPv6) are supported. | 9 * IP version 4 (IPv4) and IP version 6 (IPv6) are supported. |
10 */ | 10 */ |
11 class InternetAddressType { | 11 class InternetAddressType { |
12 static const InternetAddressType IP_V4 = const InternetAddressType._(0); | 12 static const InternetAddressType IP_V4 = const InternetAddressType._(0); |
13 static const InternetAddressType IP_V6 = const InternetAddressType._(1); | 13 static const InternetAddressType IP_V6 = const InternetAddressType._(1); |
14 static const InternetAddressType ANY = const InternetAddressType._(-1); | 14 static const InternetAddressType ANY = const InternetAddressType._(-1); |
15 | 15 |
(...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
738 } | 738 } |
739 if (address != null) { | 739 if (address != null) { |
740 sb.write(", address = ${address.host}"); | 740 sb.write(", address = ${address.host}"); |
741 } | 741 } |
742 if (port != null) { | 742 if (port != null) { |
743 sb.write(", port = $port"); | 743 sb.write(", port = $port"); |
744 } | 744 } |
745 return sb.toString(); | 745 return sb.toString(); |
746 } | 746 } |
747 } | 747 } |
OLD | NEW |