Windows uses exceptfds to report failed async connect() in select(). TCP now done on Windows (I think).

This commit is contained in:
Adam Ierymenko 2014-03-28 13:37:21 -07:00
parent e8b613e625
commit 7957ab6b1d
3 changed files with 20 additions and 2 deletions

View file

@ -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<Socket> &self,SocketManager *sm);
virtual bool notifyAvailableForWrite(const SharedPtr<Socket> &self,SocketManager *sm);