#include "SDL/SDL_net.h"
#include "basicobject.h"
Include dependency graph for netsocket.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Classes | |
class | NetSocket |
The basic network socket class. More... | |
class | NetStandardSocket |
The basic network socket class. More... | |
Defines | |
#define | FILTER_SERVER 1 |
filter for the socket to the main, unique server in a network | |
#define | MAX_DATALEN 0xFFFE |
max. lenght of a TCP-message; size of "data" to be allocated when calling NetSocket::readdata(data) | |
#define | E_NET_NONE 0 |
#define | E_NET_NO_HOST -16 |
#define | E_NET_DISCONNECTED -17 |
#define | E_NET_RAW_DATA -32 |
#define | E_NET_BUFTOOSMALL -33 |
#define | E_NET_OTHER -64 |
#define E_NET_BUFTOOSMALL -33 |
The packet is larger than the buffer, where it should be stored.
#define E_NET_DISCONNECTED -17 |
The host disconnected the connection
#define E_NET_NO_HOST -16 |
No host is specified (socket is not initialized)
#define E_NET_NONE 0 |
No error occured, all fine.
#define E_NET_OTHER -64 |
Another error occured.
#define E_NET_RAW_DATA -32 |
The message's data is not compatible to the format of the message handler.