commit 3c9c8f67e9f8ed1cf7d4d267201207046cfa5f3d
parent 6599a5bb3ae28d19ebb8998087393caca113e944
Author: David Goulet <dgoulet@torproject.org>
Date: Mon, 19 Jan 2026 15:15:15 -0500
exit: Add Monero ports to ReducedExitPolicy
Closes #41168
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat:
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/changes/ticket41168 b/changes/ticket41168
@@ -0,0 +1,3 @@
+ o Minor feature (Exit):
+ - Add Monero ports to the ReducedExitPolicy. Closes ticket 41168.
+
diff --git a/src/core/or/policies.c b/src/core/or/policies.c
@@ -1938,8 +1938,10 @@ policies_log_first_redundant_entry(const smartlist_t *policy)
"accept *:6679,accept *:6697,accept *:8000,accept *:8008,accept *:8074," \
"accept *:8080,accept *:8082,accept *:8087-8088,accept *:8232-8233," \
"accept *:8332-8333,accept *:8443,accept *:8888,accept *:9418," \
- "accept *:9999,accept *:10000,accept *:11371,accept *:19294," \
- "accept *:19638,accept *:50002,accept *:64738,reject *:*"
+ "accept *:9999,accept *:10000,accept *:11371," \
+ "accept *:18080-18081,accept *:18089," \
+ "accept *:19294,accept *:19638,accept *:50002,accept *:64738," \
+ "reject *:*"
/** Parse the exit policy <b>cfg</b> into the linked list *<b>dest</b>.
*