hs_stats.h 505 B

123456789101112131415161718
  1. /* Copyright (c) 2016-2019, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. /**
  4. * \file hs_stats.h
  5. * \brief Header file for hs_stats.c
  6. **/
  7. #ifndef TOR_HS_STATS_H
  8. #define TOR_HS_STATS_H
  9. void hs_stats_note_introduce2_cell(int is_hsv3);
  10. uint32_t hs_stats_get_n_introduce2_v3_cells(void);
  11. uint32_t hs_stats_get_n_introduce2_v2_cells(void);
  12. void hs_stats_note_service_rendezvous_launch(void);
  13. uint32_t hs_stats_get_n_rendezvous_launches(void);
  14. #endif /* !defined(TOR_HS_STATS_H) */