commit c18596e5d063058d69159fe08b2267976fc6c7a1
parent 44d94e263dc1f4460bfcd28c0492c37eb5c2a1a3
Author: David Goulet <dgoulet@torproject.org>
Date: Tue, 27 Jan 2026 15:31:31 +0000
Merge branch 'ticket41168_049_01' into 'main'
exit: Add Monero ports to ReducedExitPolicy
Closes #41168
See merge request tpo/core/tor!970
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>.
*