diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-24 13:18:10 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-24 13:18:10 (GMT) |
commit | 842d6d00f1e11ebdf17ec934d7c7d49381a456c0 (patch) | |
tree | f6db2bc174cb5819bd0877f24a783c21666795fd | |
parent | 18592932556fe3ca6e78e7c4a11af2db03beb6da (diff) | |
download | tcl-842d6d00f1e11ebdf17ec934d7c7d49381a456c0.zip tcl-842d6d00f1e11ebdf17ec934d7c7d49381a456c0.tar.gz tcl-842d6d00f1e11ebdf17ec934d7c7d49381a456c0.tar.bz2 |
Fix compile error if SO_REUSEPORT not supported. Put command options in alphabetical order
-rw-r--r-- | generic/tclIOCmd.c | 6 | ||||
-rw-r--r-- | unix/tclUnixSock.c | 3 |
2 files changed, 5 insertions, 4 deletions
diff --git a/generic/tclIOCmd.c b/generic/tclIOCmd.c index b4696fd..930f5a3 100644 --- a/generic/tclIOCmd.c +++ b/generic/tclIOCmd.c @@ -1485,12 +1485,12 @@ Tcl_SocketObjCmd( Tcl_Obj *const objv[]) /* Argument objects. */ { static const char *const socketOptions[] = { - "-async", "-myaddr", "-myport", "-server", "-reuseaddr", "-reuseport", + "-async", "-myaddr", "-myport", "-reuseaddr", "-reuseport", "-server", NULL }; enum socketOptions { - SKT_ASYNC, SKT_MYADDR, SKT_MYPORT, SKT_SERVER, SKT_REUSEADDR, - SKT_REUSEPORT + SKT_ASYNC, SKT_MYADDR, SKT_MYPORT, SKT_REUSEADDR, SKT_REUSEPORT, + SKT_SERVER }; int optionIndex, a, server = 0, port, myport = 0, async = 0; unsigned int flags = 0; diff --git a/unix/tclUnixSock.c b/unix/tclUnixSock.c index bb75ed3..187c157 100644 --- a/unix/tclUnixSock.c +++ b/unix/tclUnixSock.c @@ -1523,10 +1523,11 @@ Tcl_OpenTcpServerEx( */ errorMsg = "SO_REUSEPORT isn't supported by this platform"; goto error; -#endif +#else optvalue = 1; (void) setsockopt(sock, SOL_SOCKET, SO_REUSEPORT, (char *) &optvalue, sizeof(optvalue)); +#endif } /* |