geoip.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  4. * Copyright (c) 2007-2012, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file geoip.h
  8. * \brief Header file for geoip.c.
  9. **/
  10. #ifndef _TOR_GEOIP_H
  11. #define _TOR_GEOIP_H
  12. #ifdef GEOIP_PRIVATE
  13. int geoip_ipv4_parse_entry(const char *line);
  14. int geoip_ipv6_parse_entry(const char *line);
  15. int geoip_get_country_by_ipv4(uint32_t ipaddr);
  16. int geoip_get_country_by_ipv6(const struct in6_addr *addr);
  17. #endif
  18. int should_record_bridge_info(const or_options_t *options);
  19. int geoip_load_file(sa_family_t family, const char *filename,
  20. const or_options_t *options);
  21. int geoip_get_country_by_addr(const tor_addr_t *addr);
  22. int geoip_get_n_countries(void);
  23. const char *geoip_get_country_name(country_t num);
  24. int geoip_is_loaded(sa_family_t family);
  25. const char *geoip_db_digest(sa_family_t family);
  26. country_t geoip_get_country(const char *countrycode);
  27. void geoip_note_client_seen(geoip_client_action_t action,
  28. const tor_addr_t *addr, time_t now);
  29. void geoip_remove_old_clients(time_t cutoff);
  30. void geoip_note_ns_response(geoip_client_action_t action,
  31. geoip_ns_response_t response);
  32. char *geoip_get_client_history(geoip_client_action_t action, int *total_ipv4,
  33. int *total_ipv6);
  34. char *geoip_get_request_history(geoip_client_action_t action);
  35. int getinfo_helper_geoip(control_connection_t *control_conn,
  36. const char *question, char **answer,
  37. const char **errmsg);
  38. void geoip_free_all(void);
  39. void geoip_start_dirreq(uint64_t dirreq_id, size_t response_size,
  40. geoip_client_action_t action, dirreq_type_t type);
  41. void geoip_change_dirreq_state(uint64_t dirreq_id, dirreq_type_t type,
  42. dirreq_state_t new_state);
  43. void geoip_dirreq_stats_init(time_t now);
  44. void geoip_reset_dirreq_stats(time_t now);
  45. char *geoip_format_dirreq_stats(time_t now);
  46. time_t geoip_dirreq_stats_write(time_t now);
  47. void geoip_dirreq_stats_term(void);
  48. void geoip_entry_stats_init(time_t now);
  49. time_t geoip_entry_stats_write(time_t now);
  50. void geoip_entry_stats_term(void);
  51. void geoip_reset_entry_stats(time_t now);
  52. char *geoip_format_entry_stats(time_t now);
  53. void geoip_bridge_stats_init(time_t now);
  54. char *geoip_format_bridge_stats(time_t now);
  55. time_t geoip_bridge_stats_write(time_t now);
  56. void geoip_bridge_stats_term(void);
  57. const char *geoip_get_bridge_stats_extrainfo(time_t);
  58. char *geoip_get_bridge_stats_controller(time_t);
  59. #endif