diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-04-03 17:08:29 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-04-26 23:54:16 -0400 |
commit | ed7c267743f2471a5a16c5ec437efda665f4c6af (patch) | |
tree | a5be5b7acd47163e31af43bfec117be14b0a49f1 /src | |
parent | 4851de554d5fc473cc9418b15bfb752e45b7d81d (diff) | |
download | tor-ed7c267743f2471a5a16c5ec437efda665f4c6af.tar.gz tor-ed7c267743f2471a5a16c5ec437efda665f4c6af.zip |
Note another place that we need to fix a 1090 issue.
Diffstat (limited to 'src')
-rw-r--r-- | src/or/connection_edge.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index 4c7442671f..1f5eb703ae 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -789,6 +789,9 @@ addressmap_ent_remove(const char *address, addressmap_entry_t *ent) static void clear_trackexithost_mappings(const char *exitname) { + /* XXXX022-1090 We need a variant of this that clears all mappings no longer + permitted because of changes to the ExcludeNodes, ExitNodes, or + ExcludeExitNodes settings. */ char *suffix; size_t suffix_len; if (!addressmap || !exitname) |