0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-27 08:41:02 +08:00

Windows build: CONNECTION_BROKEN_PIPE and CONNECTION_ABORTED has the same value

This commit is contained in:
Victor Zarubkin 2016-11-19 02:28:10 +03:00
parent 1af4fa0887
commit cdea3b805f

View File

@ -117,7 +117,9 @@ void EasySocket::checkResult(int result)
const int CONNECTION_ABORTED = WSAECONNABORTED;
const int CONNECTION_RESET = WSAECONNRESET;
const int CONNECTION_IN_PROGRESS = WSAEINPROGRESS;
const int CONNECTION_BROKEN_PIPE = WSAECONNABORTED;
// TODO: check for proper WSAE code. WSAECONNABORTED already used by CONNECTION_ABORTED. Replaced by WSAENETRESET. // by Victor Zarubkin on 2016/11/19
const int CONNECTION_BROKEN_PIPE = WSAENETRESET;// WSAECONNABORTED;
#else
error_code = errno;
const int CONNECTION_ABORTED = ECONNABORTED;