mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-06 14:27:16 +00:00
12 lines
313 B
C
12 lines
313 B
C
#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();
|
|
|
|
#endif /* NETWORK_LAN_H */
|