浏览代码

make ipv6-only config complaint clearer

(a relay operator hit this on #tor-relays and couldn't make sense
of it. i couldn't either until i went to go read the code.)
Roger Dingledine 7 年之前
父节点
当前提交
776c1a5d1a
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/app/config/config.c

+ 2 - 2
src/app/config/config.c

@@ -7565,8 +7565,8 @@ check_server_ports(const smartlist_t *ports,
   }
   }
   if (n_orport_advertised && !n_orport_advertised_ipv4 &&
   if (n_orport_advertised && !n_orport_advertised_ipv4 &&
       !options->BridgeRelay) {
       !options->BridgeRelay) {
-    log_warn(LD_CONFIG, "Configured non-bridge only to listen on an IPv6 "
-             "address.");
+    log_warn(LD_CONFIG, "Configured public relay to listen only on an IPv6 "
+             "address. Tor needs to listen on an IPv4 address too.");
     r = -1;
     r = -1;
   }
   }