mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-13 14:43:46 +01:00
32 lines
998 B
C
32 lines
998 B
C
|
/* Copyright (c) 2001 Matej Pfajfar.
|
||
|
* Copyright (c) 2001-2004, Roger Dingledine.
|
||
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
||
|
* Copyright (c) 2007-2018, The Tor Project, Inc. */
|
||
|
/* See LICENSE for licensing information */
|
||
|
|
||
|
/**
|
||
|
* \file voteflags.h
|
||
|
* \brief Header file for voteflags.c
|
||
|
**/
|
||
|
|
||
|
#ifndef TOR_VOTEFLAGS_H
|
||
|
#define TOR_VOTEFLAGS_H
|
||
|
|
||
|
void dirserv_set_router_is_running(routerinfo_t *router, time_t now);
|
||
|
char *dirserv_get_flag_thresholds_line(void);
|
||
|
void dirserv_compute_bridge_flag_thresholds(void);
|
||
|
int running_long_enough_to_decide_unreachable(void);
|
||
|
|
||
|
void set_routerstatus_from_routerinfo(routerstatus_t *rs,
|
||
|
node_t *node,
|
||
|
routerinfo_t *ri, time_t now,
|
||
|
int listbadexits);
|
||
|
|
||
|
void dirserv_compute_performance_thresholds(digestmap_t *omit_as_sybil);
|
||
|
|
||
|
#ifdef VOTEFLAGS_PRIVATE
|
||
|
STATIC void dirserv_set_routerstatus_testing(routerstatus_t *rs);
|
||
|
#endif
|
||
|
|
||
|
#endif
|