summaryrefslogtreecommitdiff
path: root/network_udp.h
blob: 35524ac1ccb8d9298b73e1d3aaf213e22640e192 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef NETWORK_LAN_H
#define NETWORK_LAN_H

void NetworkUDPInitialize(void);
bool NetworkUDPListen(uint32 host, uint16 port);
void NetworkUDPReceive(void);
void NetworkUDPSearchGame(void);
void NetworkUDPQueryServer(const byte* host, unsigned short port);
void NetworkUDPAdvertise();

#endif /* NETWORK_LAN_H */