1 /*
2  * ufdbHostnames.h - URLfilterDB
3  *
4  * ufdbGuard is copyrighted (C) 2005-2013 by URLfilterDB with all rights reserved.
5  *
6  * Cached IP and hostname lookups.
7  *
8  * RCS $Id$
9  */
10 
11 
12 #ifndef UFDB_HOSTNAMES_H_INCLUDED
13 #define UFDB_HOSTNAMES_H_INCLUDED
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18 
19 int UFDBfindCorrectHostNameForIP( int worker, char * ip, char * host );
20 
21 #ifdef __cplusplus
22 }
23 #endif
24 
25 #endif
26 
27