Files
@ r3016:b28a60dfd364
Branch filter:
Location: cpp/openttd-patchpack/source/network_udp.h - annotation
r3016:b28a60dfd364
485 B
text/x-c
(svn r3596) -Codechange: [OSX] changed to use Apple's macros instead of OTTD macros for endian conversion
This increases the execution speed a lot since GCC can't detect the OTTD macro as an endian conversion
while Apple's code uses the instruction to convert endian instead of a series of instructions to produce the same result
Since we don't have that many endian conversions in the game, overall performance should not increase noteworthy
This increases the execution speed a lot since GCC can't detect the OTTD macro as an endian conversion
while Apple's code uses the instruction to convert endian instead of a series of instructions to produce the same result
Since we don't have that many endian conversions in the game, overall performance should not increase noteworthy
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 */
|