config.h 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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-2011, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file config.h
  8. * \brief Header file for config.c.
  9. **/
  10. #ifndef _TOR_CONFIG_H
  11. #define _TOR_CONFIG_H
  12. const char *get_dirportfrontpage(void);
  13. or_options_t *get_options(void);
  14. int set_options(or_options_t *new_val, char **msg);
  15. void config_free_all(void);
  16. const char *safe_str_client(const char *address);
  17. const char *safe_str(const char *address);
  18. const char *escaped_safe_str_client(const char *address);
  19. const char *escaped_safe_str(const char *address);
  20. const char *get_version(void);
  21. int config_get_lines(const char *string, config_line_t **result);
  22. void config_free_lines(config_line_t *front);
  23. setopt_err_t options_trial_assign(config_line_t *list, int use_defaults,
  24. int clear_first, char **msg);
  25. int resolve_my_address(int warn_severity, or_options_t *options,
  26. uint32_t *addr, char **hostname_out);
  27. int is_local_addr(const tor_addr_t *addr) ATTR_PURE;
  28. void options_init(or_options_t *options);
  29. char *options_dump(or_options_t *options, int minimal);
  30. int options_init_from_torrc(int argc, char **argv);
  31. setopt_err_t options_init_from_string(const char *cf,
  32. int command, const char *command_arg, char **msg);
  33. int option_is_recognized(const char *key);
  34. const char *option_get_canonical_name(const char *key);
  35. config_line_t *option_get_assignment(or_options_t *options,
  36. const char *key);
  37. int options_save_current(void);
  38. const char *get_torrc_fname(void);
  39. char *options_get_datadir_fname2_suffix(or_options_t *options,
  40. const char *sub1, const char *sub2,
  41. const char *suffix);
  42. #define get_datadir_fname2_suffix(sub1, sub2, suffix) \
  43. options_get_datadir_fname2_suffix(get_options(), (sub1), (sub2), (suffix))
  44. /** Return a newly allocated string containing datadir/sub1. See
  45. * get_datadir_fname2_suffix. */
  46. #define get_datadir_fname(sub1) get_datadir_fname2_suffix((sub1), NULL, NULL)
  47. /** Return a newly allocated string containing datadir/sub1/sub2. See
  48. * get_datadir_fname2_suffix. */
  49. #define get_datadir_fname2(sub1,sub2) \
  50. get_datadir_fname2_suffix((sub1), (sub2), NULL)
  51. /** Return a newly allocated string containing datadir/sub1suffix. See
  52. * get_datadir_fname2_suffix. */
  53. #define get_datadir_fname_suffix(sub1, suffix) \
  54. get_datadir_fname2_suffix((sub1), NULL, (suffix))
  55. int get_num_cpus(const or_options_t *options);
  56. or_state_t *get_or_state(void);
  57. int or_state_save(time_t now);
  58. int options_need_geoip_info(or_options_t *options, const char **reason_out);
  59. int getinfo_helper_config(control_connection_t *conn,
  60. const char *question, char **answer,
  61. const char **errmsg);
  62. const char *tor_get_digests(void);
  63. uint32_t get_effective_bwrate(or_options_t *options);
  64. uint32_t get_effective_bwburst(or_options_t *options);
  65. #ifdef CONFIG_PRIVATE
  66. /* Used only by config.c and test.c */
  67. or_options_t *options_new(void);
  68. #endif
  69. #endif