mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 04:13:28 +01:00
Add string for IP_NOW_REDUNDANT in circuit_end_reason_to_control_string
Closes 14207; bugfix on 0.2.6.2-alpha.
This commit is contained in:
parent
bb56fd1f8f
commit
3368b0c9f2
3
changes/bug14207
Normal file
3
changes/bug14207
Normal file
@ -0,0 +1,3 @@
|
||||
o Minor bugfixes (controller):
|
||||
- Add a code for the END_CIRC_REASON_IP_NOW_REDUNDANT circuit close
|
||||
reason. Fixes bug 12407; bugfix on 0.2.6.2-alpha.
|
@ -350,6 +350,8 @@ circuit_end_reason_to_control_string(int reason)
|
||||
return "NOSUCHSERVICE";
|
||||
case END_CIRC_REASON_MEASUREMENT_EXPIRED:
|
||||
return "MEASUREMENT_EXPIRED";
|
||||
case END_CIRC_REASON_IP_NOW_REDUNDANT:
|
||||
return "IP_NOW_REDUNDANT";
|
||||
default:
|
||||
if (is_remote) {
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user