
commit 3581dbc1fc318e86102656b7e7a3e73d1d3bea8b Author: Damian Johnson <atagar@torproject.org> Date: Tue May 6 08:48:22 2014 -0700 Adding PT_MISSING to ORClosureReason New reasson for the enumeration... https://gitweb.torproject.org/torspec.git/commitdiff/358e8ac97811ff2ad6de34f... --- stem/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stem/__init__.py b/stem/__init__.py index ff344c8..8a607a6 100644 --- a/stem/__init__.py +++ b/stem/__init__.py @@ -300,6 +300,7 @@ Library for working with the tor process. **IOERROR** got a different kind of error from relay **RESOURCELIMIT** relay has insufficient resources to service the request **MISC** connection refused for another reason + **PT_MISSING** no pluggable transport was available =================== =========== .. data:: AuthDescriptorAction (enum) @@ -718,6 +719,7 @@ ORClosureReason = stem.util.enum.UppercaseEnum( "IOERROR", "RESOURCELIMIT", "MISC", + "PT_MISSING", ) AuthDescriptorAction = stem.util.enum.UppercaseEnum(
participants (1)
-
atagar@torproject.org