1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00

Include EISCONN in compat defines

Seems I didn't build anymore after rebasing
e2b37a776d onto master. EISCONN is being used
now and thus needs a compat define as well after removing wsockcompat.h.
This commit is contained in:
Andreas Pakulat 2013-10-28 16:43:34 +01:00
parent e2b37a776d
commit 9bb0c10793

View file

@ -66,6 +66,9 @@
#ifndef EINPROGRESS
#define EINPROGRESS WSAEINPROGRESS
#endif
#ifndef EISCONN
#define EISCONN WSAEISCONN
#endif
#define compatible_close(fd) closesocket(fd);
#ifdef __MINGW64__