tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

hs_stats.h (447B)


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