diff options
author | Lunar <lunar@torproject.org> | 2014-03-03 13:31:45 +0100 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-03-03 09:53:38 -0500 |
commit | 3a425ac3a85024b60509f7ae3cbe295fd2498555 (patch) | |
tree | 67f748eef2bef89d35059d593c8f2e8f6b07b4c0 | |
parent | bd49653f8e4835347abd323561397cb146b4796a (diff) | |
download | tor-3a425ac3a85024b60509f7ae3cbe295fd2498555.tar.gz tor-3a425ac3a85024b60509f7ae3cbe295fd2498555.zip |
Fix max client name length in HiddenServiceAuthorizeClient description
REND_CLIENTNAME_MAX_LEN is set to 16, not 19.
-rw-r--r-- | changes/bug11118 | 3 | ||||
-rw-r--r-- | doc/tor.1.txt | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/changes/bug11118 b/changes/bug11118 new file mode 100644 index 0000000000..2df8878d02 --- /dev/null +++ b/changes/bug11118 @@ -0,0 +1,3 @@ + o Documentation: + - Fix max client name length in HiddenServiceAuthorizeClient description: + should have been 16 and not 19. Fix ticket 11118. diff --git a/doc/tor.1.txt b/doc/tor.1.txt index dc67889353..2b6de2ab61 100644 --- a/doc/tor.1.txt +++ b/doc/tor.1.txt @@ -2032,7 +2032,7 @@ The following options are used to configure a hidden service. authorization protocol or \'stealth' for a less scalable protocol that also hides service activity from unauthorized clients. Only clients that are listed here are authorized to access the hidden service. Valid client names - are 1 to 19 characters long and only use characters in A-Za-z0-9+-_ (no + are 1 to 16 characters long and only use characters in A-Za-z0-9+-_ (no spaces). If this option is set, the hidden service is not accessible for clients without authorization any more. Generated authorization data can be found in the hostname file. Clients need to put this authorization data in |