From 7957ab6b1df2c5221d702d205397365fcbe93d98 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Fri, 28 Mar 2014 13:37:21 -0700 Subject: Windows uses exceptfds to report failed async connect() in select(). TCP now done on Windows (I think). --- node/TcpSocket.hpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'node/TcpSocket.hpp') diff --git a/node/TcpSocket.hpp b/node/TcpSocket.hpp index 0c24808d..ea2b0ddf 100644 --- a/node/TcpSocket.hpp +++ b/node/TcpSocket.hpp @@ -83,7 +83,10 @@ protected: _outbufsize(0), _inptr(0), _connecting(c), - _remote(r) {} + _remote(r) + { + //printf("!!! TCP SOCKET CREATED @%.16llx to %s\r\n",(unsigned long long)this,_remote.toString().c_str()); + } virtual bool notifyAvailableForRead(const SharedPtr &self,SocketManager *sm); virtual bool notifyAvailableForWrite(const SharedPtr &self,SocketManager *sm); -- cgit v1.2.3