mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-16 00:12:51 +00:00
1d1a78c011
from the server-list
14 lines
442 B
C
14 lines
442 B
C
#ifndef NETWORK_LAN_H
|
|
#define NETWORK_LAN_H
|
|
|
|
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 byte* host, unsigned short port);
|
|
void NetworkUDPAdvertise(void);
|
|
void NetworkUDPRemoveAdvertise(void);
|
|
|
|
#endif /* NETWORK_LAN_H */
|