| Index: dart/sdk/lib/io/socket.dart
|
| diff --git a/dart/sdk/lib/io/socket.dart b/dart/sdk/lib/io/socket.dart
|
| index b95163c5567765976e6eea3c6c7635e37e82c0f8..7b4009dd5590f421ca6c17f1f6fd7ead0f38bc7a 100644
|
| --- a/dart/sdk/lib/io/socket.dart
|
| +++ b/dart/sdk/lib/io/socket.dart
|
| @@ -227,7 +227,8 @@ abstract class RawServerSocket implements Stream<RawSocket> {
|
| external static Future<RawServerSocket> bind(address,
|
| int port,
|
| {int backlog: 0,
|
| - bool v6Only: false});
|
| + bool v6Only: false,
|
| + bool shared: false});
|
|
|
| /**
|
| * Returns the port used by this socket.
|
| @@ -318,7 +319,8 @@ abstract class ServerSocket implements Stream<Socket> {
|
| external static Future<ServerSocket> bind(address,
|
| int port,
|
| {int backlog: 0,
|
| - bool v6Only: false});
|
| + bool v6Only: false,
|
| + bool shared: false});
|
|
|
| /**
|
| * Returns the port used by this socket.
|
|
|