Differences From Artifact [8487ec5ebc]:
- File win/tclWinSock.c — part of check-in [9fa32bd70a] at 2009-04-27 21:25:17 on branch core-8-4-branch — Backport fix for [Bug 2446662]: resync Win behavior on RST with that of unix (EOF). (user: ferrieux size: 76269)
To Artifact [bc9a86654d]:
- File win/tclWinSock.c — part of check-in [19cb09b3ec] at 2009-04-27 22:10:28 on branch core-8-4-branch — Backport fix for [Bug 1028264]: WSACleanup() too early. The fix introduces "late exit handlers" for similar late process-wide cleanups. (user: ferrieux size: 76273)
1 2 3 4 5 6 7 8 9 10 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | - + | /* * tclWinSock.c -- * * This file contains Windows-specific socket related code. * * Copyright (c) 1995-1997 Sun Microsystems, Inc. * * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * |
| ︙ | |||
322 323 324 325 326 327 328 | 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 | - + |
WSADATA wsaData;
DWORD err;
ThreadSpecificData *tsdPtr =
(ThreadSpecificData *)TclThreadDataKeyGet(&dataKey);
if (!initialized) {
initialized = 1;
|
| ︙ |