commit 71ef9ebc5518c5dc53e063bdbaa18fec39d0c925 Author: Damian Johnson atagar@torproject.org Date: Thu Aug 20 18:03:24 2020 -0700
IP_NOW_REDUNDANT circuit closure reason
Added by https://gitweb.torproject.org/torspec.git/commit/?id=b418155 --- stem/__init__.py | 5 +++++ 1 file changed, 5 insertions(+)
diff --git a/stem/__init__.py b/stem/__init__.py index 6a67b4e3..49e9ce14 100644 --- a/stem/__init__.py +++ b/stem/__init__.py @@ -159,6 +159,9 @@ Library for working with the tor process. Reason that a circuit is being closed or failed to be established. Tor may provide reasons not in this enum.
+ .. versionchanged:: 2.0.0 + Added IP_NOW_REDUNDANT (:spec:`b418155`). + ========================= =========== CircClosureReason Description ========================= =========== @@ -177,6 +180,7 @@ Library for working with the tor process. **NOPATH** not enough relays to make a circuit **NOSUCHSERVICE** requested hidden service does not exist **MEASUREMENT_EXPIRED** same as **TIMEOUT** except that it was left open for measurement purposes + **IP_NOW_REDUNDANT** introduction point is redundant with another constructed circuit ========================= ===========
.. data:: CircEvent (enum) @@ -869,6 +873,7 @@ CircClosureReason = stem.util.enum.UppercaseEnum( 'NOPATH', 'NOSUCHSERVICE', 'MEASUREMENT_EXPIRED', + 'IP_NOW_REDUNDANT', )
CircEvent = stem.util.enum.UppercaseEnum(
tor-commits@lists.torproject.org