Laurent - 2002-04-26

I don't know if it's the right place to post that, but :

Around line 956 of socket.cpp, i see :

if(errno == EINPROGRESS)

That does not compile under win32, it seems

#ifdef    WIN32
        if(errno == WSAEINPROGRESS)
#else
        if(errno == EINPROGRESS)
#endif

Works better.

Laurent