network_udp.h
author bjarni
Sun, 19 Dec 2004 23:27:20 +0000
changeset 728 c8728c17f505
parent 716 40a349345f82
child 738 0b2fb79e64fc
permissions -rw-r--r--
(svn r1180) Makefile: fixed dependancies so the flag -j can be used. It makes the compilation process into more than one job which makes it able to benefit from multiple CPUs. Using -j without setting a limit of jobs (like -j2) is not a great idea (thanks to ln-- for reporting the need for this one)
#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 */