summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authormax <max@tclers.tk>2011-06-16 15:21:10 (GMT)
committermax <max@tclers.tk>2011-06-16 15:21:10 (GMT)
commit780b0cdac176c6999acab399bc2c774d749be408 (patch)
tree4b2e1bc43ca9510d8c2daa9387ed66843996aaa4 /unix
parent0c955659dda077af9e047ae31ed3c4d6b2a76033 (diff)
downloadtcl-780b0cdac176c6999acab399bc2c774d749be408.zip
tcl-780b0cdac176c6999acab399bc2c774d749be408.tar.gz
tcl-780b0cdac176c6999acab399bc2c774d749be408.tar.bz2
* doc/socket.n: Document the fact that the event loop is now needed for [socket -async]
* unix/tclUnixSock.c: Set up the file handler for async sockets to fire on exceptions in addition to writable state. * tests/socket.test: Improve error reporting when socket-14.2 times out.
Diffstat (limited to 'unix')
-rw-r--r--unix/tclUnixSock.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/unix/tclUnixSock.c b/unix/tclUnixSock.c
index a883e8c..5ace251 100644
--- a/unix/tclUnixSock.c
+++ b/unix/tclUnixSock.c
@@ -971,7 +971,8 @@ CreateClientSocket(
status = connect(state->fds.fd, state->addr->ai_addr,
state->addr->ai_addrlen);
if (status < 0 && errno == EINPROGRESS) {
- Tcl_CreateFileHandler(state->fds.fd, TCL_WRITABLE,
+ Tcl_CreateFileHandler(state->fds.fd,
+ TCL_WRITABLE | TCL_EXCEPTION,
TcpAsyncCallback, state);
return TCL_OK;