From 9b4046607232c636c58f04672c1b762968a8b023 Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Wed, 21 Nov 2012 16:31:58 -0800 Subject: [PATCH] Document that care needs to be taken with any_streams_attached. --- src/or/or.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/or/or.h b/src/or/or.h index 8501235b7b..d165705e97 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -2875,6 +2875,10 @@ typedef struct origin_circuit_t { /** * Did any SOCKS streams or hidserv introductions actually succeed on * this circuit? + * + * Note: If we ever implement end-to-end stream timing through test + * stream probes (#5707), we must *not* set this for those probes + * (or any other automatic streams). */ unsigned int any_streams_succeeded : 1;