Browse Source

Create an OS specific sock_blocks function.

nfactor-troky
Con Kolivas 12 years ago
parent
commit
a2a7a036f0
  1. 8
      util.h

8
util.h

@ -14,6 +14,10 @@ @@ -14,6 +14,10 @@
#define CLOSESOCKET close
#define SOCKERRMSG strerror(errno)
static inline bool sock_blocks(void)
{
return (errno == EAGAIN || errno == EWOULDBLOCK);
}
#elif defined WIN32
#include <ws2tcpip.h>
#include <winsock2.h>
@ -27,6 +31,10 @@ @@ -27,6 +31,10 @@
extern char *WSAErrorMsg(void);
#define SOCKERRMSG WSAErrorMsg()
static inline bool sock_blocks(void)
{
return (WSAGetLastError() == WSAEWOULDBLOCK);
}
#ifndef SHUT_RDWR
#define SHUT_RDWR SD_BOTH
#endif

Loading…
Cancel
Save