diff options
author | limeboy <that.lemon+tcl@gmai.com> | 2016-11-24 12:47:21 (GMT) |
---|---|---|
committer | limeboy <that.lemon+tcl@gmai.com> | 2016-11-24 12:47:21 (GMT) |
commit | 5b33616e5080b53d8b1e8b8608a98d824a952ee9 (patch) | |
tree | ff124e26492a522aa6a4f97ce86dcbb4625938bd /win | |
parent | 33ded984ff02df26e0faf1d254abd2ea6acc0070 (diff) | |
download | tcl-5b33616e5080b53d8b1e8b8608a98d824a952ee9.zip tcl-5b33616e5080b53d8b1e8b8608a98d824a952ee9.tar.gz tcl-5b33616e5080b53d8b1e8b8608a98d824a952ee9.tar.bz2 |
Implement the whole TIP 456 specification.
Also introduces the `-reuseaddr' and `-reuseport' options for the `socket'
command.
Diffstat (limited to 'win')
-rw-r--r-- | win/tclWinSock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tclWinSock.c b/win/tclWinSock.c index a389d45..b228730 100644 --- a/win/tclWinSock.c +++ b/win/tclWinSock.c @@ -2039,7 +2039,7 @@ Tcl_OpenTcpServerEx( Tcl_Interp *interp, /* For error reporting - may be NULL. */ int port, /* Port number to open. */ const char *myHost, /* Name of local host. */ - int flags, /* Flags (not used) */ + unsigned int flags, /* Flags (not used) */ Tcl_TcpAcceptProc *acceptProc, /* Callback for accepting connections from new * clients. */ |