[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] correct "your server is reachable" log entries to indicate ...
Update of /home2/or/cvsroot/tor/src/or
In directory moria:/home/arma/work/onion/cvs/tor/src/or
Modified Files:
router.c
Log Message:
correct "your server is reachable" log entries to indicate that it was
self-testing that told us so.
Index: router.c
===================================================================
RCS file: /home2/or/cvsroot/tor/src/or/router.c,v
retrieving revision 1.206
retrieving revision 1.207
diff -u -d -r1.206 -r1.207
--- router.c 12 Sep 2005 06:56:42 -0000 1.206
+++ router.c 13 Sep 2005 21:39:42 -0000 1.207
@@ -433,7 +433,7 @@
{
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 @@
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;
}
}