diff options
author | Roger Dingledine <arma@torproject.org> | 2005-09-13 21:39:42 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-09-13 21:39:42 +0000 |
commit | 85855999658c8c60d00b1c198421233b9c87e8da (patch) | |
tree | b37019b5d768a41717f39c257df8e5eda1a1f8bd /src/or/router.c | |
parent | 26cc51ffeab5775273409266c9c40ff396f95b15 (diff) | |
download | tor-85855999658c8c60d00b1c198421233b9c87e8da.tar tor-85855999658c8c60d00b1c198421233b9c87e8da.tar.gz |
correct "your server is reachable" log entries to indicate that it was
self-testing that told us so.
svn:r5034
Diffstat (limited to 'src/or/router.c')
-rw-r--r-- | src/or/router.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/router.c b/src/or/router.c index ffb7ffeab..a36900770 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; } } |