1#ifndef GEOIP_INTERNAL_H
2#define GEOIP_INTERNAL_H
3
4#include "GeoIP.h"
5
6GEOIP_API unsigned int _GeoIP_seek_record_gl (GeoIP *gi, unsigned long ipnum, GeoIPLookup * gl);
7GEOIP_API unsigned int _GeoIP_seek_record_v6_gl (GeoIP *gi, geoipv6_t ipnum, GeoIPLookup * gl);
8GEOIP_API geoipv6_t _GeoIP_addr_to_num_v6 (const char *addr);
9
10GEOIP_API unsigned long _GeoIP_lookupaddress (const char *host);
11GEOIP_API geoipv6_t _GeoIP_lookupaddress_v6 (const char *host);
12GEOIP_API int __GEOIP_V6_IS_NULL(geoipv6_t v6);
13
14GEOIP_API void _GeoIP_setup_dbfilename();
15GEOIP_API char *_GeoIP_full_path_to(const char *file_name);
16
17/* deprecated */
18GEOIP_API unsigned int _GeoIP_seek_record (GeoIP *gi, unsigned long ipnum);
19GEOIP_API unsigned int _GeoIP_seek_record_v6 (GeoIP *gi, geoipv6_t ipnum);
20
21#endif
22