diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-10-26 12:38:50 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-10-26 12:38:50 -0400 |
commit | 9c8dbcd0d676e9092da75c7bdae75679c9d753e3 (patch) | |
tree | 9c791c036f1c621ac528eca2a16e69b6c063069a /src/or/circpathbias.c | |
parent | 206a9726b112d674b712949fadc653def57f427b (diff) | |
download | tor-9c8dbcd0d676e9092da75c7bdae75679c9d753e3.tar.gz tor-9c8dbcd0d676e9092da75c7bdae75679c9d753e3.zip |
More module documentation (circpathbias, circuitlist)
Diffstat (limited to 'src/or/circpathbias.c')
-rw-r--r-- | src/or/circpathbias.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/or/circpathbias.c b/src/or/circpathbias.c index 9f93e737f7..6ee69aac1e 100644 --- a/src/or/circpathbias.c +++ b/src/or/circpathbias.c @@ -11,6 +11,14 @@ * different tor nodes, in an attempt to detect attacks where * an attacker deliberately causes circuits to fail until the client * choses a path they like. + * + * This code is currently configured in a warning-only mode, though false + * positives appear to be rare in practice. There is also support for + * disabling really bad guards, but it's quite experimental and may have bad + * anonymity effects. + * + * The information here is associated with the entry_guard_t object for + * each guard, and stored persistently in the state file. */ #include "or.h" |