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:
parent
e2b37a776d
commit
9bb0c10793
1 changed files with 3 additions and 0 deletions
|
@ -66,6 +66,9 @@
|
|||
#ifndef EINPROGRESS
|
||||
#define EINPROGRESS WSAEINPROGRESS
|
||||
#endif
|
||||
#ifndef EISCONN
|
||||
#define EISCONN WSAEISCONN
|
||||
#endif
|
||||
|
||||
#define compatible_close(fd) closesocket(fd);
|
||||
#ifdef __MINGW64__
|
||||
|
|
Loading…
Add table
Reference in a new issue