mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
Merge remote-tracking branch 'tor-github/pr/747' into maint-0.2.9
This commit is contained in:
+3
-3
@@ -808,10 +808,10 @@ circuit_log_ancient_one_hop_circuits(int age)
|
||||
if (circ->timestamp_created.tv_sec >= cutoff)
|
||||
continue;
|
||||
/* Single Onion Services deliberately make long term one-hop intro
|
||||
* connections. We only ignore active intro point connections, if we take
|
||||
* a long time establishing, that's worth logging. */
|
||||
* and rendezvous connections. Don't log the established ones. */
|
||||
if (rend_service_allow_non_anonymous_connection(options) &&
|
||||
circ->purpose == CIRCUIT_PURPOSE_S_INTRO)
|
||||
(circ->purpose == CIRCUIT_PURPOSE_S_INTRO ||
|
||||
circ->purpose == CIRCUIT_PURPOSE_S_REND_JOINED))
|
||||
continue;
|
||||
/* Tor2web deliberately makes long term one-hop rend connections,
|
||||
* particularly when Tor2webRendezvousPoints is used. We only ignore
|
||||
|
||||
Reference in New Issue
Block a user