aboutsummaryrefslogtreecommitdiff
path: root/src/core/or/connection_edge.c
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2021-10-04 14:38:50 -0400
committerDavid Goulet <dgoulet@torproject.org>2021-10-06 13:20:22 -0400
commitf0d1240a07c60b3a01d730d9379bdbe72d41b552 (patch)
tree58ab5d42dff65988d23232ea4b7c46ccaa6b5fa6 /src/core/or/connection_edge.c
parent0dbb2f53b933cb089ed18d72717bbf10938ffa76 (diff)
downloadtor-f0d1240a07c60b3a01d730d9379bdbe72d41b552.tar.gz
tor-f0d1240a07c60b3a01d730d9379bdbe72d41b552.zip
hs-v2: Only log once the connection warning to v2
Closes #40474 Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/core/or/connection_edge.c')
-rw-r--r--src/core/or/connection_edge.c16
1 files changed, 10 insertions, 6 deletions
diff --git a/src/core/or/connection_edge.c b/src/core/or/connection_edge.c
index 7f260ba185..82e8ead5e0 100644
--- a/src/core/or/connection_edge.c
+++ b/src/core/or/connection_edge.c
@@ -2584,12 +2584,16 @@ connection_ap_handshake_rewrite_and_attach(entry_connection_t *conn,
tor_assert(!automap);
if (addresstype == ONION_V2_HOSTNAME) {
- log_warn(LD_PROTOCOL,
- "Warning! You've just connected to a v2 onion address. These "
- "addresses are deprecated for security reasons, and are no "
- "longer supported in Tor. Please encourage the site operator "
- "to upgrade. For more information see "
- "https://blog.torproject.org/v2-deprecation-timeline");
+ static bool log_once = false;
+ if (!log_once) {
+ log_warn(LD_PROTOCOL,
+ "Warning! You've just connected to a v2 onion address. These "
+ "addresses are deprecated for security reasons, and are no "
+ "longer supported in Tor. Please encourage the site operator "
+ "to upgrade. For more information see "
+ "https://blog.torproject.org/v2-deprecation-timeline");
+ log_once = true;
+ }
}
return connection_ap_handle_onion(conn, socks, circ, addresstype);