/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 2; tab-width: 2 -*- */ /* GeoIP.h * * Copyright (C) 2002 MaxMind.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef GEOIPUPDATE_H #define GEOIPUPDATE_H #ifdef __cplusplus extern "C" { #endif typedef enum { GEOIP_NO_NEW_UPDATES = 1, /* Database up-to-date, no action taken */ GEOIP_SUCCESS = 0, /* Success */ GEOIP_LICENSE_KEY_INVALID_ERR = -1, /* License Key Invalid */ GEOIP_DNS_ERR = -11, /* Unable to resolve hostname */ GEOIP_NON_IPV4_ERR = -12, /* Non - IPv4 address */ GEOIP_SOCKET_OPEN_ERR = -13, /* Error opening socket */ GEOIP_CONNECTION_ERR = -14, /* Unable to connect */ GEOIP_GZIP_IO_ERR = -15, /* Unable to write GeoIP.dat.gz file */ GEOIP_TEST_IO_ERR = -16, /* Unable to write GeoIP.dat.test file */ GEOIP_GZIP_READ_ERR = -17, /* Unable to read gzip data */ GEOIP_OUT_OF_MEMORY_ERR = -18, /* Out of memory error */ GEOIP_SOCKET_READ_ERR = -19, /* Error reading from socket, see errno */ GEOIP_SANITY_OPEN_ERR = -20, /* Sanity check GeoIP_open error */ GEOIP_SANITY_INFO_FAIL = -21, /* Sanity check database_info string failed */ GEOIP_SANITY_LOOKUP_FAIL = -22, /* Sanity check ip address lookup failed */ GEOIP_RENAME_ERR = -23, /* Rename error while installing db, check errno */ } GeoIPUpdateCode; short int GeoIP_update_database (char * license_key, int verbose, void (*f)( char *)); #ifdef __cplusplus } #endif #endif /* GEOIPUPDATE_H */