author | Tero Marttila <terom@fixme.fi> |
Fri, 19 Dec 2008 02:25:44 +0200 | |
branch | terom-mini |
changeset 10442 | 7089fa402bfd |
parent 9844 | 705fc23bedba |
permissions | -rw-r--r-- |
9844
705fc23bedba
(svn r13988) -Codechange: move the to IP resolving functions to a separate file.
rubidium
parents:
diff
changeset
|
1 |
/* $Id$ */ |
705fc23bedba
(svn r13988) -Codechange: move the to IP resolving functions to a separate file.
rubidium
parents:
diff
changeset
|
2 |
|
705fc23bedba
(svn r13988) -Codechange: move the to IP resolving functions to a separate file.
rubidium
parents:
diff
changeset
|
3 |
/** |
705fc23bedba
(svn r13988) -Codechange: move the to IP resolving functions to a separate file.
rubidium
parents:
diff
changeset
|
4 |
* @file host.h Resolving of hostnames/IPs |
705fc23bedba
(svn r13988) -Codechange: move the to IP resolving functions to a separate file.
rubidium
parents:
diff
changeset
|
5 |
*/ |
705fc23bedba
(svn r13988) -Codechange: move the to IP resolving functions to a separate file.
rubidium
parents:
diff
changeset
|
6 |
|
705fc23bedba
(svn r13988) -Codechange: move the to IP resolving functions to a separate file.
rubidium
parents:
diff
changeset
|
7 |
#ifndef NETWORK_CORE_HOST_H |
705fc23bedba
(svn r13988) -Codechange: move the to IP resolving functions to a separate file.
rubidium
parents:
diff
changeset
|
8 |
|
705fc23bedba
(svn r13988) -Codechange: move the to IP resolving functions to a separate file.
rubidium
parents:
diff
changeset
|
9 |
void NetworkFindBroadcastIPs(uint32 *broadcast, int limit); |
705fc23bedba
(svn r13988) -Codechange: move the to IP resolving functions to a separate file.
rubidium
parents:
diff
changeset
|
10 |
uint32 NetworkResolveHost(const char *hostname); |
705fc23bedba
(svn r13988) -Codechange: move the to IP resolving functions to a separate file.
rubidium
parents:
diff
changeset
|
11 |
|
705fc23bedba
(svn r13988) -Codechange: move the to IP resolving functions to a separate file.
rubidium
parents:
diff
changeset
|
12 |
#endif /* NETWORK_CORE_HOST_H */ |