aboutsummaryrefslogtreecommitdiff
path: root/src/or/main.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2005-08-22 05:33:49 +0000
committerRoger Dingledine <arma@torproject.org>2005-08-22 05:33:49 +0000
commitd928411acd93a9d389b06d530dcae1e1d333d05f (patch)
treee7ce67731c7352c215f85aac20ba34b98df4cab6 /src/or/main.c
parentdc09c7fc736378e9cf19bf751516e9aed97501da (diff)
downloadtor-d928411acd93a9d389b06d530dcae1e1d333d05f.tar
tor-d928411acd93a9d389b06d530dcae1e1d333d05f.tar.gz
change log entry for unreachability to explicitly suggest /etc/hosts
as the culprit svn:r4807
Diffstat (limited to 'src/or/main.c')
-rw-r--r--src/or/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/main.c b/src/or/main.c
index 2d3666cde..fa7b3687b 100644
--- a/src/or/main.c
+++ b/src/or/main.c
@@ -857,10 +857,10 @@ second_elapsed_callback(int fd, short event, void *args)
/* every 20 minutes, check and complain if necessary */
routerinfo_t *me = router_get_my_routerinfo();
if (!check_whether_orport_reachable())
- log(LOG_WARN,"Your server (%s:%d) has not managed to confirm that its ORPort is reachable. Please check your firewalls, ports, address, etc.",
+ log(LOG_WARN,"Your server (%s:%d) has not managed to confirm that its ORPort is reachable. Please check your firewalls, ports, address, /etc/hosts file, etc.",
me ? me->address : options->Address, options->ORPort);
if (!check_whether_dirport_reachable())
- log(LOG_WARN,"Your server (%s:%d) has not managed to confirm that its DirPort is reachable. Please check your firewalls, ports, address, etc.",
+ log(LOG_WARN,"Your server (%s:%d) has not managed to confirm that its DirPort is reachable. Please check your firewalls, ports, address, /etc/hosts file, etc.",
me ? me->address : options->Address, options->DirPort);
}