aboutsummaryrefslogtreecommitdiffstats
path: root/epan/geoip_db.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2008-12-19 23:49:03 +0000
committerGerald Combs <gerald@wireshark.org>2008-12-19 23:49:03 +0000
commit7d22c0fb7f065d45c744fd97fee785f4b9ed8556 (patch)
treea7873b88f53d9a7db8509a12e299a82b3ef9001b /epan/geoip_db.h
parent6d04f793f019b456f8d8c81f231152fbba24da8b (diff)
Rename geoip.[ch] to geoip_db.[ch] so we don't collide with GeoIP.h. Rename
some functions to match. Add GeoIP lookups to the IP dissector. Add a preference for GeoIP lookups, which is disabled by default. svn path=/trunk/; revision=27063
Diffstat (limited to 'epan/geoip_db.h')
-rw-r--r--epan/geoip_db.h75
1 files changed, 75 insertions, 0 deletions
diff --git a/epan/geoip_db.h b/epan/geoip_db.h
new file mode 100644
index 0000000000..1885964c48
--- /dev/null
+++ b/epan/geoip_db.h
@@ -0,0 +1,75 @@
+/* geoip_db.h
+ * GeoIP database support
+ *
+ * $Id$
+ *
+ * Copyright 2008, Gerald Combs <gerald@wireshark.org>
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * This program 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
+ * of the License, or (at your option) any later version.
+ *
+ * This program 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 program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __GEOIP_DB_H__
+#define __GEOIP_DB_H__
+
+/**
+ * Init function called from epan.h
+ */
+extern void geoip_db_init(void);
+
+/**
+ * Number of databases we have loaded
+ *
+ * @return The number GeoIP databases successfully loaded
+ */
+extern guint geoip_num_dbs(void);
+
+/**
+ * Fetch the name of a database
+ *
+ * @param dbnum Database index
+ * @return The database name or "Invalid database"
+ */
+const gchar *geoip_db_name(guint dbnum);
+
+/**
+ * Fetch the database type. Types are enumerated in GeoIPDBTypes in GeoIP.h.
+ *
+ * @param dbnum Database index
+ * @return The database type or -1
+ */
+int geoip_db_type(guint dbnum);
+
+/**
+ * Look up an IPv4 address in a database
+ *
+ * @param dbnum Database index
+ * @param addr IPv4 address to look up
+ * @param not_found The string to return if the lookup fails. May be NULL.
+ * @return The database entry if found, else not_found
+ */
+const char *geoip_db_lookup_ipv4(guint dbnum, guint32 addr, char *not_found);
+
+/**
+ * Get all configured paths
+ *
+ * @return String with all paths separated by a path separator
+ */
+extern gchar *geoip_db_get_paths(void);
+
+#endif /* __GEOIP_DB_H__ */