mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Changing the ExitPolicyRejectPrivate setting should cause us to rebuild the
descriptor. svn:r12507
This commit is contained in:
parent
06a1e4124f
commit
3e9369ebd9
@ -8,6 +8,8 @@ Changes in version 0.2.0.12-alpha - 2007-11-??
|
||||
operations. (Bug spotted by Karsten)
|
||||
- Fix a small memory leak whenever we decide against using a
|
||||
newly picked entry guard. Reported by Mike Perry.
|
||||
- Changing the ExitPolicyRejectPrivate setting should cause us to
|
||||
rebuild the descriptor.
|
||||
|
||||
o Minor features:
|
||||
- When we negotiate a v2 OR connection (not yet implemented), accept
|
||||
|
@ -3189,6 +3189,7 @@ options_transition_affects_descriptor(or_options_t *old_options,
|
||||
!opt_streq(old_options->Nickname,new_options->Nickname) ||
|
||||
!opt_streq(old_options->Address,new_options->Address) ||
|
||||
!config_lines_eq(old_options->ExitPolicy,new_options->ExitPolicy) ||
|
||||
old_options->ExitPolicyRejectPrivate != new_options->ExitPolicyRejectPrivate ||
|
||||
old_options->ORPort != new_options->ORPort ||
|
||||
old_options->DirPort != new_options->DirPort ||
|
||||
old_options->ClientOnly != new_options->ClientOnly ||
|
||||
|
Loading…
Reference in New Issue
Block a user