Changeset 1742
- Timestamp:
- 26/07/2007 22:36:12 (18 months ago)
- Files:
-
- 1 modified
-
box/chris/general/lib/server/SocketStream.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
box/chris/general/lib/server/SocketStream.cpp
r590 r1742 16 16 #include <sys/types.h> 17 17 #include <errno.h> 18 #include <string.h> 18 19 19 20 #ifndef WIN32 … … 165 166 ::close(mSocketHandle); 166 167 #endif 168 BOX_ERROR("Failed to connect to socket (type " << Type << 169 ", name " << Name << ", port " << Port << "): " << 170 "error " << errno << " (" << strerror(errno) << 171 ")"); 167 172 mSocketHandle = INVALID_SOCKET_VALUE; 168 173 THROW_EXCEPTION(ConnectionException, Conn_SocketConnectError)
