From b961d1c3bdbafbdaeb70dd2f4a43f0dd2ea829ed Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Mon, 28 Feb 2005 09:39:12 +0000 Subject: [PATCH] disable the reachability detection stuff in cvs, so people can run servers from cvs while i'm gone. svn:r3712 --- src/or/router.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/or/router.c b/src/or/router.c index de45b309f6..e67829ca6b 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -374,9 +374,9 @@ int init_keys(void) { */ /** Whether we can reach our ORPort from the outside. */ -static int can_reach_or_port = 0; +static int can_reach_or_port = 1; /** Whether we can reach our DirPort from the outside. */ -static int can_reach_dir_port = 0; +static int can_reach_dir_port = 1; void consider_testing_reachability(void) { routerinfo_t *me = router_get_my_routerinfo(); @@ -407,8 +407,8 @@ void router_dirport_found_reachable(void) { /** Our router has just moved to a new IP. Reset stats. */ void server_has_changed_ip(void) { stats_n_seconds_working = 0; - can_reach_or_port = 0; - can_reach_dir_port = 0; +// can_reach_or_port = 0; +// can_reach_dir_port = 0; mark_my_descriptor_dirty(); }