tor/src/feature/dirauth/dirauth_periodic.h

31 lines
721 B
C
Raw Normal View History

/* Copyright (c) 2001 Matej Pfajfar.
* Copyright (c) 2001-2004, Roger Dingledine.
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
* Copyright (c) 2007-2019, The Tor Project, Inc. */
/* See LICENSE for licensing information */
/**
* @file dirauth_periodic.h
* @brief Header for dirauth_periodic.c
**/
#ifndef DIRVOTE_PERIODIC_H
#define DIRVOTE_PERIODIC_H
#ifdef HAVE_MODULE_DIRAUTH
void dirauth_register_periodic_events(void);
void reschedule_dirvote(const or_options_t *options);
#else /* !defined(HAVE_MODULE_DIRAUTH) */
static inline void
reschedule_dirvote(const or_options_t *options)
{
(void)options;
}
2019-06-05 15:33:35 +02:00
#endif /* defined(HAVE_MODULE_DIRAUTH) */
2019-06-05 15:33:35 +02:00
#endif /* !defined(DIRVOTE_PERIODIC_H) */