| Index: runtime/bin/socket.h
|
| diff --git a/runtime/bin/socket.h b/runtime/bin/socket.h
|
| index 72d2ca9cf87b719b67003f7887dffb086edf9a9d..5d68561a80cac9b58d479a514a7ea5906869ad46 100644
|
| --- a/runtime/bin/socket.h
|
| +++ b/runtime/bin/socket.h
|
| @@ -62,6 +62,12 @@ class ServerSocket {
|
| static const intptr_t kTemporaryFailure = -2;
|
|
|
| static intptr_t Accept(intptr_t fd);
|
| +
|
| + // Returns a positive integer if the call is successful. In case of failure
|
| + // it returns:
|
| + //
|
| + // -1: system error (errno set)
|
| + // -5: invalid bindAddress
|
| static intptr_t CreateBindListen(const char* bindAddress,
|
| intptr_t port,
|
| intptr_t backlog);
|
|
|