Changeset 907
- Timestamp:
- 01/09/2006 00:39:24 (5 years ago)
- File:
-
- 1 edited
-
box/chris/merge/lib/server/SocketStreamTLS.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
box/chris/merge/lib/server/SocketStreamTLS.cpp
r710 r907 138 138 } 139 139 140 #ifndef WIN32 140 141 // Make the socket non-blocking so timeouts on Read work 141 142 #ifdef WIN32143 u_long nonblocking = 1;144 ioctlsocket(socket, FIONBIO, &nonblocking);145 #else // !WIN32146 142 // This is more portable than using ioctl with FIONBIO 147 143 int statusFlags = 0; … … 314 310 case SSL_ERROR_WANT_READ: 315 311 case SSL_ERROR_WANT_WRITE: 316 // wait for the requ ired data312 // wait for the requried data 317 313 // Will only get once around this loop, so don't need to calculate timeout values 318 314 if(WaitWhenRetryRequired(se, Timeout) == false)
Note: See TracChangeset
for help on using the changeset viewer.
