(svn r13988) -Codechange: move the to IP resolving functions to a separate file.

This commit is contained in:
rubidium
2008-08-04 12:56:38 +00:00
parent a822e259c5
commit c88cb1daa0
8 changed files with 280 additions and 223 deletions

12
src/network/core/host.h Normal file
View File

@@ -0,0 +1,12 @@
/* $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 */