hs_config.h 486 B

12345678910111213141516171819202122
  1. /* Copyright (c) 2016, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. /**
  4. * \file hs_config.h
  5. * \brief Header file containing configuration ABI/API for the HS subsytem.
  6. **/
  7. #ifndef TOR_HS_CONFIG_H
  8. #define TOR_HS_CONFIG_H
  9. #include "or.h"
  10. /* Maximum number of intro points per version 3 services. */
  11. #define HS_CONFIG_V3_MAX_INTRO_POINTS 20
  12. /* API */
  13. int hs_config_service_all(const or_options_t *options, int validate_only);
  14. #endif /* TOR_HS_CONFIG_H */