diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-11-04 21:44:31 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-11-04 21:44:31 -0500 |
commit | 626a8b60d7752f38e6587bed9b614c6d039dd9f7 (patch) | |
tree | 227f93749508620dc346d2828ade36f47e123517 /src/or/geoip.h | |
parent | e5ca5040a56b74f3d0de82d74946f0d9c7d44cc3 (diff) | |
parent | ffddd4de2a69a896be3886b8f48a218a70babbcc (diff) | |
download | tor-626a8b60d7752f38e6587bed9b614c6d039dd9f7.tar.gz tor-626a8b60d7752f38e6587bed9b614c6d039dd9f7.zip |
Merge remote-tracking branch 'linus/bug5053-bug5055'
Conflicts:
src/or/geoip.c
Diffstat (limited to 'src/or/geoip.h')
-rw-r--r-- | src/or/geoip.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/or/geoip.h b/src/or/geoip.h index bda5fe2c58..2272486477 100644 --- a/src/or/geoip.h +++ b/src/or/geoip.h @@ -13,16 +13,17 @@ #define TOR_GEOIP_H #ifdef GEOIP_PRIVATE -int geoip_parse_entry(const char *line); +int geoip_parse_entry(const char *line, sa_family_t family); +int geoip_get_country_by_ipv4(uint32_t ipaddr); +int geoip_get_country_by_ipv6(const struct in6_addr *addr); #endif int should_record_bridge_info(const or_options_t *options); -int geoip_load_file(const char *filename, const or_options_t *options); -int geoip_get_country_by_ip(uint32_t ipaddr); +int geoip_load_file(sa_family_t family, const char *filename); int geoip_get_country_by_addr(const tor_addr_t *addr); int geoip_get_n_countries(void); const char *geoip_get_country_name(country_t num); -int geoip_is_loaded(void); -const char *geoip_db_digest(void); +int geoip_is_loaded(sa_family_t family); +const char *geoip_db_digest(sa_family_t family); country_t geoip_get_country(const char *countrycode); void geoip_note_client_seen(geoip_client_action_t action, @@ -31,7 +32,8 @@ void geoip_remove_old_clients(time_t cutoff); void geoip_note_ns_response(geoip_client_action_t action, geoip_ns_response_t response); -char *geoip_get_client_history(geoip_client_action_t action); +int geoip_get_client_history(geoip_client_action_t action, + char **country_str, char **ipver_str); char *geoip_get_request_history(geoip_client_action_t action); int getinfo_helper_geoip(control_connection_t *control_conn, const char *question, char **answer, |