2002-09-29 17:53:19 +00:00
|
|
|
/* include/wsockcompat.h
|
|
|
|
* Windows -> Berkeley Sockets compatibility things.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if !defined __XML_WSOCKCOMPAT_H__
|
|
|
|
#define __XML_WSOCKCOMPAT_H__
|
|
|
|
|
2017-10-09 00:05:04 +02:00
|
|
|
#include <errno.h>
|
2002-09-29 17:53:19 +00:00
|
|
|
#include <winsock2.h>
|
2006-02-09 09:08:46 +00:00
|
|
|
|
2019-01-15 12:33:48 +01:00
|
|
|
/* Fix for old MinGW. */
|
|
|
|
#ifndef _WINSOCKAPI_
|
|
|
|
#define _WINSOCKAPI_
|
|
|
|
#endif
|
|
|
|
|
2006-02-09 09:08:46 +00:00
|
|
|
/* the following is a workaround a problem for 'inline' keyword in said
|
|
|
|
header when compiled with Borland C++ 6 */
|
|
|
|
#if defined(__BORLANDC__) && !defined(__cplusplus)
|
|
|
|
#define inline __inline
|
2009-03-25 09:51:19 +00:00
|
|
|
#define _inline __inline
|
2006-02-09 09:08:46 +00:00
|
|
|
#endif
|
|
|
|
|
2005-10-13 23:12:42 +00:00
|
|
|
#include <ws2tcpip.h>
|
2006-02-09 09:08:46 +00:00
|
|
|
|
2005-10-13 23:12:42 +00:00
|
|
|
/* Check if ws2tcpip.h is a recent version which provides getaddrinfo() */
|
|
|
|
#if defined(GetAddrInfo)
|
2008-04-09 17:49:09 +00:00
|
|
|
#include <wspiapi.h>
|
2022-09-05 02:02:54 +02:00
|
|
|
#ifndef SUPPORT_IP6
|
|
|
|
#define SUPPORT_IP6
|
|
|
|
#endif
|
2005-10-13 23:12:42 +00:00
|
|
|
#endif
|
2002-09-29 17:53:19 +00:00
|
|
|
|
2017-10-09 00:05:04 +02:00
|
|
|
#ifndef ECONNRESET
|
|
|
|
#define ECONNRESET WSAECONNRESET
|
|
|
|
#endif
|
|
|
|
#ifndef EINPROGRESS
|
|
|
|
#define EINPROGRESS WSAEINPROGRESS
|
|
|
|
#endif
|
|
|
|
#ifndef EINTR
|
|
|
|
#define EINTR WSAEINTR
|
|
|
|
#endif
|
|
|
|
#ifndef ESHUTDOWN
|
|
|
|
#define ESHUTDOWN WSAESHUTDOWN
|
|
|
|
#endif
|
|
|
|
#ifndef EWOULDBLOCK
|
|
|
|
#define EWOULDBLOCK WSAEWOULDBLOCK
|
|
|
|
#endif
|
2002-09-29 17:53:19 +00:00
|
|
|
|
|
|
|
#endif /* __XML_WSOCKCOMPAT_H__ */
|