17 lines
397 B
C
17 lines
397 B
C
#ifndef SOCKET_BASE_H
|
|
#define SOCKET_BASE_H
|
|
|
|
// Quick way to get all the network code defined
|
|
#include "pandabase.h"
|
|
#include "socket_portable.h"
|
|
#include "socket_address.h"
|
|
#include "socket_ip.h"
|
|
#include "socket_tcp.h"
|
|
#include "socket_tcp_listen.h"
|
|
#include "socket_udp_incoming.h"
|
|
#include "socket_udp_outgoing.h"
|
|
#include "socket_fdset.h"
|
|
#include "socket_selector.h"
|
|
|
|
#endif //SOCKET_BASE_H
|