Explorar o código

Improve the log message when a transport doesn't support proxies.

Per feedback, explicltly note that the transport will be killed when it
does not acknowledge the configured outgoing proxy.
Yawning Angel %!s(int64=10) %!d(string=hai) anos
pai
achega
60ac9f1c90
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  1. 2 1
      src/or/transports.c

+ 2 - 1
src/or/transports.c

@@ -805,7 +805,8 @@ handle_finished_proxy(managed_proxy_t *mp)
   case PT_PROTO_CONFIGURED: /* if configured correctly: */
     if (mp->proxy_uri && !mp->proxy_supported) {
       log_warn(LD_CONFIG, "Managed proxy '%s' did not configure the "
-               "specified outgoing proxy.", mp->argv[0]);
+               "specified outgoing proxy and will be terminated.",
+               mp->argv[0]);
       managed_proxy_destroy(mp, 1); /* annihilate it. */
       break;
     }