mirror of
https://github.com/OpenTTD/OpenTTD
synced 2026-01-19 18:32:35 +01:00
13 lines
236 B
C
13 lines
236 B
C
/* $Id$ */
|
|
|
|
/**
|
|
* @file host.h Resolving of hostnames/IPs
|
|
*/
|
|
|
|
#ifndef NETWORK_CORE_HOST_H
|
|
|
|
void NetworkFindBroadcastIPs(uint32 *broadcast, int limit);
|
|
uint32 NetworkResolveHost(const char *hostname);
|
|
|
|
#endif /* NETWORK_CORE_HOST_H */
|