fix: point Tor DNS resolver at relay address 10.200.1.13

Was incorrectly set to 127.0.0.1. The Tor DNSPort runs on the
remote relay at 10.200.1.13:9053. Alt relays noted in comments.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
user
2026-02-15 16:20:08 +01:00
parent d5866a9867
commit fd8e9f85b6

View File

@@ -17,8 +17,10 @@ RCODES: dict[int, str] = {
4: "NOTIMP", 5: "REFUSED",
}
# Tor DNS resolver (DNSPort on the local Tor relay)
TOR_DNS_ADDR = "127.0.0.1"
# Tor DNS resolver (DNSPort on the Tor relay)
TOR_DNS_ADDR = "10.200.1.13"
# TOR_DNS_ADDR = "10.200.1.254" # alt
# TOR_DNS_ADDR = "10.200.1.1" # alt
TOR_DNS_PORT = 9053