diff options
author | teor <teor@torproject.org> | 2020-03-21 03:42:07 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2020-03-21 04:07:17 +1000 |
commit | 1d22411cea7887857e449a369c4ba5730c03ee9c (patch) | |
tree | 4bf2aebd8781bee85ca4f3d6d7bd71788dded73f /src/app | |
parent | e0eec3bf29cbd5f1d4588040d9f83aa54450291c (diff) | |
download | tor-1d22411cea7887857e449a369c4ba5730c03ee9c.tar.gz tor-1d22411cea7887857e449a369c4ba5730c03ee9c.zip |
Add some comments about future relay IPv6 work
Comments about 33681.
Diffstat (limited to 'src/app')
-rw-r--r-- | src/app/config/config.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/app/config/config.c b/src/app/config/config.c index c93ff9e1ec..3047d2ebb5 100644 --- a/src/app/config/config.c +++ b/src/app/config/config.c @@ -2905,7 +2905,8 @@ resolve_my_address(int warn_severity, const or_options_t *options, /* make sure we're ok with publishing an internal IP */ if (using_default_dir_authorities(options)) { /* if they are using the default authorities, disallow internal IPs - * always. */ + * always. For IPv6 ORPorts, this check is done in + * router_get_advertised_ipv6_or_ap(). See #33681. */ log_fn(warn_severity, LD_CONFIG, "Address '%s' resolves to private IP address '%s'. " "Tor servers that use the default DirAuthorities must have " |