mirror of https://github.com/axmolengine/axmol.git
44 lines
1.1 KiB
C
44 lines
1.1 KiB
C
|
#ifndef USOCKET_H
|
||
|
#define USOCKET_H
|
||
|
/*=========================================================================*\
|
||
|
* Socket compatibilization module for Unix
|
||
|
* LuaSocket toolkit
|
||
|
\*=========================================================================*/
|
||
|
|
||
|
/*=========================================================================*\
|
||
|
* BSD include files
|
||
|
\*=========================================================================*/
|
||
|
/* error codes */
|
||
|
#include <errno.h>
|
||
|
/* close function */
|
||
|
#include <unistd.h>
|
||
|
/* fnctnl function and associated constants */
|
||
|
#include <fcntl.h>
|
||
|
/* struct sockaddr */
|
||
|
#include <sys/types.h>
|
||
|
/* socket function */
|
||
|
#include <sys/socket.h>
|
||
|
/* struct timeval */
|
||
|
#include <sys/time.h>
|
||
|
/* gethostbyname and gethostbyaddr functions */
|
||
|
#include <netdb.h>
|
||
|
/* sigpipe handling */
|
||
|
#include <signal.h>
|
||
|
/* IP stuff*/
|
||
|
#include <netinet/in.h>
|
||
|
#include <arpa/inet.h>
|
||
|
/* TCP options (nagle algorithm disable) */
|
||
|
#include <netinet/tcp.h>
|
||
|
|
||
|
#ifndef SO_REUSEPORT
|
||
|
#define SO_REUSEPORT SO_REUSEADDR
|
||
|
#endif
|
||
|
|
||
|
typedef int t_socket;
|
||
|
typedef t_socket *p_socket;
|
||
|
typedef struct sockaddr_storage t_sockaddr_storage;
|
||
|
|
||
|
#define SOCKET_INVALID (-1)
|
||
|
|
||
|
#endif /* USOCKET_H */
|