[tor-commits] [tor/master] Actually put ExtORPortCookieAuthFile into config.c

nickm at torproject.org nickm at torproject.org
Mon Apr 28 16:40:32 UTC 2014


commit 4b519de5f9955cabc363b7217f869cdac5e2f757
Author: Nick Mathewson <nickm at torproject.org>
Date:   Mon Apr 28 12:23:18 2014 -0400

    Actually put ExtORPortCookieAuthFile into config.c
    
    Fixes bug 11635; bugfix on 0.2.5.1-alpha.
---
 changes/bug11635 |    6 ++++++
 src/or/config.c  |    1 +
 2 files changed, 7 insertions(+)

diff --git a/changes/bug11635 b/changes/bug11635
new file mode 100644
index 0000000..bb5ecee
--- /dev/null
+++ b/changes/bug11635
@@ -0,0 +1,6 @@
+  o Minor bugfixes (pluggable transports):
+    - Enable the ExtORPortCookieAuthFile option, to allow changing the
+      default location of the authentication token for the extended OR Port
+      as used by sever-side pluggable transports. We had implemented this
+      option before, but the code to make it settable had been omitted.
+      Fixes bug 11635; bugfix on 0.2.5.1-alpha.
diff --git a/src/or/config.c b/src/or/config.c
index 3954c58..b8aa7d3 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -237,6 +237,7 @@ static config_var_t option_vars_[] = {
   V(ExitPortStatistics,          BOOL,     "0"),
   V(ExtendAllowPrivateAddresses, BOOL,     "0"),
   VPORT(ExtORPort,               LINELIST, NULL),
+  V(ExtORPortCookieAuthFile,     STRING,   NULL),
   V(ExtraInfoStatistics,         BOOL,     "1"),
   V(FallbackDir,                 LINELIST, NULL),
 





More information about the tor-commits mailing list