diff options
author | nijtmans <nijtmans> | 2010-10-12 10:21:55 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-10-12 10:21:55 (GMT) |
commit | 88ac6d1bd8bf253aaca06731296ed6c96410decb (patch) | |
tree | b047c3aa39ae420af8227427ce5dced10f901429 /win/tclWinSock.c | |
parent | b344e4333e68bd8722897e5bf08a6f2711e6cdbd (diff) | |
download | tcl-88ac6d1bd8bf253aaca06731296ed6c96410decb.zip tcl-88ac6d1bd8bf253aaca06731296ed6c96410decb.tar.gz tcl-88ac6d1bd8bf253aaca06731296ed6c96410decb.tar.bz2 |
Eliminate many tclWinProcs-> indirect calls, which are no longer needed.
Fix some MSVC 6.0 warnings
Diffstat (limited to 'win/tclWinSock.c')
-rw-r--r-- | win/tclWinSock.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tclWinSock.c b/win/tclWinSock.c index e7e8c61..1976d4b 100644 --- a/win/tclWinSock.c +++ b/win/tclWinSock.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinSock.c,v 1.76 2010/09/28 15:13:55 rmax Exp $ + * RCS: @(#) $Id: tclWinSock.c,v 1.77 2010/10/12 10:21:55 nijtmans Exp $ * * ----------------------------------------------------------------------- * @@ -118,7 +118,7 @@ typedef struct SocketInfo SocketInfo; typedef struct TcpFdList { SocketInfo *infoPtr; - int fd; + SOCKET fd; struct TcpFdList *next; } TcpFdList; @@ -1016,7 +1016,7 @@ CreateSocket( u_long flag = 1; /* Indicates nonblocking mode. */ int asyncConnect = 0; /* Will be 1 if async connect is in * progress. */ - int chosenport = 0; + unsigned short chosenport = 0; struct addrinfo *addrlist = NULL, *addrPtr; /* socket address */ struct addrinfo *myaddrlist = NULL, *myaddrPtr; /* Socket address for client */ const char *errorMsg = NULL; |