commit d6a484fa8e8082a9505b9849b103675d7908f2fc Author: Damian Johnson atagar@torproject.org Date: Wed Oct 25 13:07:06 2017 -0700
Rename circuit exit to 'end'
Calling the endpoint of our own circuits 'exit' worries folks on occasion, concerned that they might accidently be running an exit relay. Renaming the termination point to 'end' to hopefully avoid those concerns...
https://trac.torproject.org/projects/tor/ticket/12956 --- nyx/panel/connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/nyx/panel/connection.py b/nyx/panel/connection.py index 3002d67..1a090ac 100644 --- a/nyx/panel/connection.py +++ b/nyx/panel/connection.py @@ -721,7 +721,7 @@ def _draw_right_column(subwindow, x, y, line, current_time, attr): circ_index = circ_path.index(line.fingerprint)
if circ_index == len(circ_path) - 1: - placement_type = 'Exit' if line.circuit.status == 'BUILT' else 'Extending' + placement_type = 'End' if line.circuit.status == 'BUILT' else 'Extending' elif circ_index == 0: placement_type = 'Guard' else:
tor-commits@lists.torproject.org