Commit d6a57ad5 authored by Doron Somech's avatar Doron Somech

Merge pull request #1912 from hitstergtd/hitstergtd-testsrcfd-win-fix

Problem: ZMQ_SRCFD test does not work on Windows
parents 99763cce e8aeb368
......@@ -105,8 +105,13 @@ int main (void)
// getting name from closed socket will fail
rc = getpeername (srcFd, (struct sockaddr*) &ss, &addrlen);
#ifdef ZMQ_HAVE_WINDOWS
assert (rc == SOCKET_ERROR);
assert (WSAGetLastError() == WSAENOTSOCK);
#else
assert (rc == -1);
assert (errno == EBADF);
#endif
rc = zmq_ctx_term (ctx);
assert (rc == 0);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment