enet
Data Structures | Macros | Typedefs | Enumerations
unix.h File Reference

ENet Unix header. More...

#include <stdlib.h>
#include <sys/time.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <unistd.h>

Go to the source code of this file.

Data Structures

struct  ENetBuffer

Macros

#define ENET_HOST_TO_NET_16(value)   (htons (value))
 macro that converts host to net byte-order of a 16-bit value
#define ENET_HOST_TO_NET_32(value)   (htonl (value))
 macro that converts host to net byte-order of a 32-bit value
#define ENET_NET_TO_HOST_16(value)   (ntohs (value))
 macro that converts net to host byte-order of a 16-bit value
#define ENET_NET_TO_HOST_32(value)   (ntohl (value))
 macro that converts net to host byte-order of a 32-bit value
#define ENET_CALLBACK
#define ENET_API   extern
#define ENET_SOCKETSET_EMPTY(sockset)   FD_ZERO (& (sockset))
#define ENET_SOCKETSET_ADD(sockset, socket)   FD_SET (socket, & (sockset))
#define ENET_SOCKETSET_REMOVE(sockset, socket)   FD_CLEAR (socket, & (sockset))
#define ENET_SOCKETSET_CHECK(sockset, socket)   FD_ISSET (socket, & (sockset))

Typedefs

typedef int ENetSocket
typedef fd_set ENetSocketSet

Enumerations

enum  { ENET_SOCKET_NULL = -1 }

Detailed Description