commit 1e56dcc53858e04488ecb2248c64d0e6cc24f724 Author: Damian Johnson atagar@torproject.org Date: Wed Jul 11 10:40:21 2018 -0700
Update manual cache
Resyncing our manual information from tor to pick up new torrc options. --- stem/cached_manual.sqlite | Bin 238592 -> 240640 bytes stem/manual.py | 2 +- stem/settings.cfg | 20 +++++++++++--------- 3 files changed, 12 insertions(+), 10 deletions(-)
diff --git a/stem/cached_manual.sqlite b/stem/cached_manual.sqlite index 6b17f4da..06d3dcd2 100644 Binary files a/stem/cached_manual.sqlite and b/stem/cached_manual.sqlite differ diff --git a/stem/manual.py b/stem/manual.py index 47c16d42..573542da 100644 --- a/stem/manual.py +++ b/stem/manual.py @@ -135,7 +135,7 @@ def query(query, *param):
>>> import stem.manual >>> print(stem.manual.query('SELECT description FROM torrc WHERE key=?', 'CONTROLSOCKET').fetchone()[0]) - Like ControlPort, but listens on a Unix domain socket, rather than a TCP socket. 0 disables ControlSocket (Unix and Unix-like systems only.) + Like ControlPort, but listens on a Unix domain socket, rather than a TCP socket. 0 disables ControlSocket. (Unix and Unix-like systems only.) (Default: 0)
.. versionadded:: 1.6.0
diff --git a/stem/settings.cfg b/stem/settings.cfg index 7e84210c..12ffe8b4 100644 --- a/stem/settings.cfg +++ b/stem/settings.cfg @@ -167,6 +167,7 @@ manual.summary.UseEntryGuards Use guard relays for first hop manual.summary.GuardfractionFile File containing information with duration of our guards manual.summary.UseGuardFraction Take guardfraction into account for path selection manual.summary.NumEntryGuards Pool size of guard relays we'll select from +manual.summary.NumPrimaryGuards Pool size of strongly preferred guard relays we'll select from manual.summary.NumDirectoryGuards Pool size of directory guards we'll select from manual.summary.GuardLifetime Minimum time to keep entry guards manual.summary.SafeSocks Toggles rejecting unsafe variants of the socks protocol @@ -207,9 +208,10 @@ manual.summary.ClientUseIPv6 Allow IPv6 connections to guards and fetching conse manual.summary.ClientPreferIPv6DirPort Perfer relays with IPv6 when fetching consensus manual.summary.ClientPreferIPv6ORPort Prefer a guard's IPv6 rather than IPv4 endpoint manual.summary.PathsNeededToBuildCircuits Portion of relays to require information for before making circuits -manual.summary.ClientBootstrapConsensusAuthorityDownloadSchedule Schedule when bootstrapping for when to download resources from authorities -manual.summary.ClientBootstrapConsensusFallbackDownloadSchedule Schedule when bootstrapping for when to download resources from fallback authorities -manual.summary.ClientBootstrapConsensusAuthorityOnlyDownloadSchedule Schedule when bootstrapping for when to download resources from authorities when fallbacks unavailable +manual.summary.ClientBootstrapConsensusAuthorityDownloadInitialDelay Delay when bootstrapping before downloading descriptors from authorities +manual.summary.ClientBootstrapConsensusFallbackDownloadInitialDelay Delay when bootstrapping before downloading descriptors from fallbacks +manual.summary.ClientBootstrapConsensusAuthorityOnlyDownloadInitialDelay Delay when bootstrapping before downloading descriptors from authorities if fallbacks disabled +manual.summary.ClientBootstrapConsensusMaxInProgressTries Descriptor documents that can be downloaded in parallel manual.summary.ClientBootstrapConsensusMaxInProgressTries Number of consensus download requests to allow in-flight at once
# Server Config Options @@ -349,12 +351,12 @@ manual.summary.TestingV3AuthVotingStartOffset Offset for the point at which the manual.summary.TestingAuthDirTimeToLearnReachability Delay until opinions are given about which relays are running or not manual.summary.TestingEstimatedDescriptorPropagationTime Delay before clients attempt to fetch descriptors from directory caches manual.summary.TestingMinFastFlagThreshold Minimum value for the Fast flag -manual.summary.TestingServerDownloadSchedule Schedule for when we should download resources as a relay -manual.summary.TestingClientDownloadSchedule Schedule for when we should download resources as a client -manual.summary.TestingServerConsensusDownloadSchedule Schedule for when we should download the consensus as a relay -manual.summary.TestingClientConsensusDownloadSchedule Schedule for when we should download the consensus as a client -manual.summary.TestingBridgeDownloadSchedule Schedule for when we should download bridge descriptors -manual.summary.TestingBridgeBootstrapDownloadSchedule Schedule for downloading bridge descriptors when started +manual.summary.TestingServerDownloadInitialDelay Delay before downloading resources for relaying +manual.summary.TestingClientDownloadInitialDelay Delay before downloading resources for client usage +manual.summary.TestingServerConsensusDownloadInitialDelay Delay before downloading descriptors for relaying +manual.summary.TestingClientConsensusDownloadInitialDelay Delay before downloading descriptors for client usage +manual.summary.TestingBridgeDownloadInitialDelay Delay before downloading bridge descriptors +manual.summary.TestingBridgeBootstrapDownloadInitialDelay Delay before downloading bridge descriptors when first started manual.summary.TestingClientMaxIntervalWithoutRequest Maximum time to wait to batch requests for missing descriptors manual.summary.TestingDirConnectionMaxStall Duration to let directory connections stall before timing out manual.summary.TestingDirAuthVoteExit Relays to give the Exit flag to
tor-commits@lists.torproject.org