| Index: examples/dart/netcat/lib/main.dart
|
| diff --git a/examples/dart/netcat/lib/main.dart b/examples/dart/netcat/lib/main.dart
|
| index 2f0e88d89c6965b718bca64b59c52d093ed84a93..5c61810599be60e11cdf32e7b07564bd3f5f9524 100644
|
| --- a/examples/dart/netcat/lib/main.dart
|
| +++ b/examples/dart/netcat/lib/main.dart
|
| @@ -25,7 +25,7 @@ void ignoreFuture(Future f) {
|
|
|
| NetAddress makeIPv4NetAddress(List<int> addr, int port) {
|
| var rv = new NetAddress();
|
| - rv.family = NetAddressFamily.ipV4;
|
| + rv.family = NetAddressFamily.ipv4;
|
| rv.ipv4 = new NetAddressIPv4();
|
| rv.ipv4.addr = new List<int>.from(addr);
|
| rv.ipv4.port = port;
|
|
|