hs_sys.h (490B)
1 /* Copyright (c) 2020-2021, The Tor Project, Inc. */ 2 /* See LICENSE for licensing information */ 3 4 /** 5 * @file hs_sys.h 6 * @brief Header for feature/hs/hs_sys.c 7 **/ 8 9 #ifndef TOR_FEATURE_HS_HS_SYS_H 10 #define TOR_FEATURE_HS_HS_SYS_H 11 12 extern const struct subsys_fns_t sys_hs; 13 14 /** 15 * Subsystem level for the metrics system. 16 * 17 * Defined here so that it can be shared between the real and stub 18 * definitions. 19 **/ 20 #define HS_SUBSYS_LEVEL (51) 21 22 #endif /* !defined(TOR_FEATURE_HS_HS_SYS_H) */