mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-06 14:27:16 +00:00
21 lines
459 B
C
21 lines
459 B
C
/* $Id$ */
|
|
|
|
/** @file network_udp.h Sending and receiving UDP messages. */
|
|
|
|
#ifndef NETWORK_UDP_H
|
|
#define NETWORK_UDP_H
|
|
|
|
#ifdef ENABLE_NETWORK
|
|
|
|
void NetworkUDPInitialize();
|
|
void NetworkUDPSearchGame();
|
|
void NetworkUDPQueryMasterServer();
|
|
void NetworkUDPQueryServer(NetworkAddress address, bool manually = false);
|
|
void NetworkUDPAdvertise();
|
|
void NetworkUDPRemoveAdvertise();
|
|
void NetworkUDPShutdown();
|
|
|
|
#endif /* ENABLE_NETWORK */
|
|
|
|
#endif /* NETWORK_UDP_H */
|