summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2016-11-29 14:32:32 -0500
committerNick Mathewson <nickm@torproject.org>2016-12-16 11:06:19 -0500
commit1e9cd5d2bbbf54818da6b6585bb60298712e6f06 (patch)
tree395c0e8c0acdba48d5da7b11fb0428617f46e3d5 /src
parentf4e64c04f49a3cd8c9b2289bd28641db85441acc (diff)
downloadtor-1e9cd5d2bbbf54818da6b6585bb60298712e6f06.tar.gz
tor-1e9cd5d2bbbf54818da6b6585bb60298712e6f06.zip
Note a couple of XXX-prop271s as spec deviations.
Diffstat (limited to 'src')
-rw-r--r--src/or/control.c2
-rw-r--r--src/or/entrynodes.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/or/control.c b/src/or/control.c
index 9cc99b6b96..03742e8731 100644
--- a/src/or/control.c
+++ b/src/or/control.c
@@ -2597,7 +2597,7 @@ getinfo_helper_events(control_connection_t *control_conn,
if (circ->base_.state == CIRCUIT_STATE_OPEN)
state = "BUILT";
else if (circ->base_.state == CIRCUIT_STATE_GUARD_WAIT)
- state = "GUARD_WAIT"; // XXXX prop271 must specify this.
+ state = "GUARD_WAIT"; // XXXX prop271 spec deviation-- specify this.
else if (circ->cpath)
state = "EXTENDED";
else
diff --git a/src/or/entrynodes.c b/src/or/entrynodes.c
index bb8cd4c813..c624c64b3f 100644
--- a/src/or/entrynodes.c
+++ b/src/or/entrynodes.c
@@ -381,8 +381,8 @@ get_max_sample_threshold(void)
/**
* We always try to make our sample contain at least this many guards.
*
- * XXXX prop271 There was a MIN_SAMPLE_THRESHOLD in the proposal, but I
- * removed it in favor of MIN_FILTERED_SAMPLE_SIZE. -NM
+ * XXXX prop271 spec deviation There was a MIN_SAMPLE_THRESHOLD in the
+ * proposal, but I removed it in favor of MIN_FILTERED_SAMPLE_SIZE. -NM
*/
STATIC int
get_min_filtered_sample_size(void)