mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-20 10:12:15 +01:00
Allow TestingTorNetwork when alternate dir and bridge authorities are set.
Allow TestingTorNetwork when AlternateDirAuthority and AlternateBridgeAuthority is set even if DirServer is not.
This commit is contained in:
parent
93b7301755
commit
21c6c84853
4
changes/bug6377
Normal file
4
changes/bug6377
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
o Testing:
|
||||||
|
- Make it possible to set the TestingTorNetwork configuration
|
||||||
|
option using AlternateDirAuthority and AlternateBridgeAuthority
|
||||||
|
as an alternative to setting DirServer.
|
@ -4091,9 +4091,13 @@ options_validate(or_options_t *old_options, or_options_t *options,
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (options->TestingTorNetwork && !options->DirServers) {
|
if (options->TestingTorNetwork &&
|
||||||
|
!(options->DirServers ||
|
||||||
|
(options->AlternateDirAuthority &&
|
||||||
|
options->AlternateBridgeAuthority))) {
|
||||||
REJECT("TestingTorNetwork may only be configured in combination with "
|
REJECT("TestingTorNetwork may only be configured in combination with "
|
||||||
"a non-default set of DirServers.");
|
"a non-default set of DirServer or both of AlternateDirAuthority "
|
||||||
|
"and AlternateBridgeAuthority configured.");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (options->AllowSingleHopExits && !options->DirServers) {
|
if (options->AllowSingleHopExits && !options->DirServers) {
|
||||||
|
Loading…
Reference in New Issue
Block a user