mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 04:13:28 +01:00
Added void stubs for the relay metrics functions to fix building without relay module
This commit is contained in:
parent
8cbfc90686
commit
5b76ce1843
@ -19,3 +19,27 @@ const struct subsys_fns_t sys_relay = {
|
||||
.supported = false,
|
||||
.level = RELAY_SUBSYS_LEVEL,
|
||||
};
|
||||
|
||||
void
|
||||
increment_est_intro_action(est_intro_action_t action)
|
||||
{
|
||||
(void)action;
|
||||
}
|
||||
|
||||
void
|
||||
increment_est_rend_action(est_rend_action_t action)
|
||||
{
|
||||
(void)action;
|
||||
}
|
||||
|
||||
void
|
||||
increment_intro1_action(intro1_action_t action)
|
||||
{
|
||||
(void)action;
|
||||
}
|
||||
|
||||
void
|
||||
increment_rend1_action(rend1_action_t action)
|
||||
{
|
||||
(void)action;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user