Files
@ r3478:523ece58cb16
Branch filter:
Location: cpp/openttd-patchpack/source/network_udp.h - annotation
r3478:523ece58cb16
485 B
text/x-c
(svn r4323) -Regression: Clear the slot assignments of all vehicles heading twoards a road stop if that road stop gets removed
This issue was fixed in r2210 and reintroduced in r4259 when the multistop handling was overhauled.
This issue was fixed in r2210 and reintroduced in r4259 when the multistop handling was overhauled.
r2186:5ee653b1b5e1 r2186:5ee653b1b5e1 r2436:963efe8b84cc r2436:963efe8b84cc r543:efdb197f91ad r774:3e6bfb2226bd r774:3e6bfb2226bd r543:efdb197f91ad r764:b278ee9c19c0 r764:b278ee9c19c0 r543:efdb197f91ad r764:b278ee9c19c0 r1329:88de95f6e7d3 r716:ae3edbaa50e7 r765:0c323ba44a44 r543:efdb197f91ad r774:3e6bfb2226bd r774:3e6bfb2226bd r2436:963efe8b84cc | /* $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 */
|