[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] and back-port those log fixes
Update of /home/or/cvsroot/tor/src/or
In directory moria:/home/arma/work/onion/tor-010x/tor/src/or
Modified Files:
Tag: tor-0_1_0-patches
router.c
Log Message:
and back-port those log fixes
Index: router.c
===================================================================
RCS file: /home/or/cvsroot/tor/src/or/router.c,v
retrieving revision 1.176.2.5
retrieving revision 1.176.2.6
diff -u -d -r1.176.2.5 -r1.176.2.6
--- router.c 23 Aug 2005 00:52:24 -0000 1.176.2.5
+++ router.c 13 Sep 2005 21:40:23 -0000 1.176.2.6
@@ -414,7 +414,7 @@
void 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;
consider_publishable_server(time(NULL), 1);
@@ -424,7 +424,7 @@
/** Annotate that we found our DirPort reachable. */
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;
}
}