2019-12-15 17:46:55 +01:00
|
|
|
/* 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_options.inc
|
|
|
|
* @brief Declare configuration options for the crypto_ops module.
|
|
|
|
**/
|
|
|
|
|
|
|
|
/** Holds configuration about our directory authority options. */
|
|
|
|
BEGIN_CONF_STRUCT(dirauth_options_t)
|
|
|
|
|
2019-12-19 14:50:19 +01:00
|
|
|
/** If non-zero, always vote the Fast flag for any relay advertising
|
|
|
|
* this amount of capacity or more. */
|
|
|
|
CONF_VAR(AuthDirFastGuarantee, MEMUNIT, 0, "100 KB")
|
|
|
|
|
|
|
|
/** If non-zero, this advertised capacity or more is always sufficient
|
|
|
|
* to satisfy the bandwidth requirement for the Guard flag. */
|
|
|
|
CONF_VAR(AuthDirGuardBWGuarantee, MEMUNIT, 0, "2 MB")
|
|
|
|
|
2019-12-15 17:46:55 +01:00
|
|
|
/** Do not permit more than this number of servers per IP address. */
|
|
|
|
CONF_VAR(AuthDirMaxServersPerAddr, POSINT, 0, "2")
|
|
|
|
|
2019-12-19 14:24:46 +01:00
|
|
|
/** Which versions of tor should we tell users to run? */
|
|
|
|
CONF_VAR(RecommendedVersions, LINELIST, 0, NULL)
|
|
|
|
|
|
|
|
/** Which versions of tor should we tell users to run on clients? */
|
|
|
|
CONF_VAR(RecommendedClientVersions, LINELIST, 0, NULL)
|
|
|
|
|
|
|
|
/** Which versions of tor should we tell users to run on relays? */
|
|
|
|
CONF_VAR(RecommendedServerVersions, LINELIST, 0, NULL)
|
|
|
|
|
|
|
|
/** Boolean: is this an authoritative directory that's willing to recommend
|
|
|
|
* versions? */
|
|
|
|
CONF_VAR(VersioningAuthoritativeDirectory, BOOL, 0, "0")
|
|
|
|
|
2019-12-15 17:46:55 +01:00
|
|
|
END_CONF_STRUCT(dirauth_options_t)
|