network_udp.h
author truelight
Sun, 19 Dec 2004 10:17:26 +0000
changeset 716 40a349345f82
parent 668 346853c8b513
child 738 0b2fb79e64fc
permissions -rw-r--r--
(svn r1168) -Cleanup: [Network] Cleaned the network code a bit. Added 'const'
and 'void' where needed, prefixed all functions, typedefs and global
vars with 'Network' and organized all externals nicely.
#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(void);

#endif /* NETWORK_LAN_H */