mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-06 13:29:56 -05:00
The check whether POSIX socket.h or WIN32 winsock2.h must be included can be made centrally. The downside is that some functionality of e.g. arpa/inet.h is also implemented in winsock.h, so that some files that don't use socket functions, but do use inet.h functions, must also include pulsecore/socket.h. (as well as arpa/inet.h)
31 lines
687 B
C
31 lines
687 B
C
#ifndef foopulsecoresockethfoo
|
|
#define foopulsecoresockethfoo
|
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
#include <sys/socket.h>
|
|
#endif
|
|
|
|
#ifdef HAVE_WINSOCK2_H
|
|
#include <winsock2.h>
|
|
|
|
#define ESHUTDOWN WSAESHUTDOWN
|
|
#define ECONNRESET WSAECONNRESET
|
|
#define ECONNABORTED WSAECONNABORTED
|
|
#define ENETRESET WSAENETRESET
|
|
#define EINPROGRESS WSAEINPROGRESS
|
|
#define EAFNOSUPPORT WSAEAFNOSUPPORT
|
|
#define ETIMEDOUT WSAETIMEDOUT
|
|
#define ECONNREFUSED WSAECONNREFUSED
|
|
#define EHOSTUNREACH WSAEHOSTUNREACH
|
|
#define EWOULDBLOCK WSAEWOULDBLOCK
|
|
#define EADDRINUSE WSAEADDRINUSE
|
|
|
|
typedef long suseconds_t;
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_WS2TCPIP_H
|
|
#include <ws2tcpip.h>
|
|
#endif
|
|
|
|
#endif
|