mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
Make AuthDirHasIPv6Connectivity a BOOL.
This is a fix of unreleased tor. It solves ticket #6770.
This commit is contained in:
parent
c77d1b7bda
commit
0e53742a85
@ -1747,13 +1747,12 @@ DIRECTORY AUTHORITY SERVER OPTIONS
|
|||||||
votes on whether to accept relays as hidden service directories.
|
votes on whether to accept relays as hidden service directories.
|
||||||
(Default: 1)
|
(Default: 1)
|
||||||
|
|
||||||
**AuthDirHasIPv6Connectivity** **0**|**1**|**auto**::
|
**AuthDirHasIPv6Connectivity** **0**|**1**::
|
||||||
|
|
||||||
Authoritative directories only. When set to 0, OR ports with an
|
Authoritative directories only. When set to 0, OR ports with an
|
||||||
IPv6 address are being accepted without reachability testing.
|
IPv6 address are being accepted without reachability testing.
|
||||||
When set to 1, IPv6 OR ports are being tested just like IPv4 OR
|
When set to 1, IPv6 OR ports are being tested just like IPv4 OR
|
||||||
ports. When set to auto, Tor tries to find out if the authority
|
ports. (Default: 0)
|
||||||
relay has IPv6 connectivity or not. (Default: auto)
|
|
||||||
|
|
||||||
**AuthDirPublishIPv6** **0**|**1**::
|
**AuthDirPublishIPv6** **0**|**1**::
|
||||||
|
|
||||||
|
@ -204,7 +204,7 @@ static config_var_t _option_vars[] = {
|
|||||||
V(AuthDirListBadExits, BOOL, "0"),
|
V(AuthDirListBadExits, BOOL, "0"),
|
||||||
V(AuthDirMaxServersPerAddr, UINT, "2"),
|
V(AuthDirMaxServersPerAddr, UINT, "2"),
|
||||||
V(AuthDirMaxServersPerAuthAddr,UINT, "5"),
|
V(AuthDirMaxServersPerAuthAddr,UINT, "5"),
|
||||||
V(AuthDirHasIPv6Connectivity, AUTOBOOL, "auto"),
|
V(AuthDirHasIPv6Connectivity, BOOL, "0"),
|
||||||
V(AuthDirPublishIPv6, BOOL, "0"),
|
V(AuthDirPublishIPv6, BOOL, "0"),
|
||||||
VAR("AuthoritativeDirectory", BOOL, AuthoritativeDir, "0"),
|
VAR("AuthoritativeDirectory", BOOL, AuthoritativeDir, "0"),
|
||||||
V(AutomapHostsOnResolve, BOOL, "0"),
|
V(AutomapHostsOnResolve, BOOL, "0"),
|
||||||
|
Loading…
Reference in New Issue
Block a user