From 85855999658c8c60d00b1c198421233b9c87e8da Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Tue, 13 Sep 2005 21:39:42 +0000 Subject: [PATCH] correct "your server is reachable" log entries to indicate that it was self-testing that told us so. svn:r5034 --- src/or/router.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/or/router.c b/src/or/router.c index ffb7ffeabd..a369007709 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -433,7 +433,7 @@ router_orport_found_reachable(void) { if (!can_reach_or_port) { if (!clique_mode(get_options())) - log(LOG_NOTICE,"Your ORPort is reachable from the outside. Excellent.%s", + log(LOG_NOTICE,"Self-testing indicates your ORPort is reachable from the outside. Excellent.%s", get_options()->NoPublish ? "" : " Publishing server descriptor."); can_reach_or_port = 1; mark_my_descriptor_dirty(); @@ -446,7 +446,7 @@ void router_dirport_found_reachable(void) { if (!can_reach_dir_port) { - log(LOG_NOTICE,"Your DirPort is reachable from the outside. Excellent."); + log(LOG_NOTICE,"Self-testing indicates your DirPort is reachable from the outside. Excellent."); can_reach_dir_port = 1; } }