Browse Source

disable the reachability detection stuff in cvs, so people can
run servers from cvs while i'm gone.


svn:r3712

Roger Dingledine 20 years ago
parent
commit
b961d1c3bd
1 changed files with 4 additions and 4 deletions
  1. 4 4
      src/or/router.c

+ 4 - 4
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();
 }