Files @ r3080:b7535a3e8c6b
Branch filter:

Location: cpp/openttd-patchpack/source/network_udp.h

tron
(svn r3669) Really wipe all data when making a void tile

Thanks to Belugas, egladil and Rubidium for their inspiration and hard work, which all this stuff is based on
/* $Id$ */

#ifndef NETWORK_UDP_H
#define NETWORK_UDP_H

#ifdef ENABLE_NETWORK

void NetworkUDPInitialize(void);
bool NetworkUDPListen(SOCKET *udp, uint32 host, uint16 port, bool broadcast);
void NetworkUDPReceive(SOCKET udp);
void NetworkUDPSearchGame(void);
void NetworkUDPQueryMasterServer(void);
NetworkGameList *NetworkUDPQueryServer(const char* host, unsigned short port);
void NetworkUDPAdvertise(void);
void NetworkUDPRemoveAdvertise(void);

#endif

#endif /* NETWORK_UDP_H */