disable the reachability detection stuff in cvs, so people can

run servers from cvs while i'm gone.


svn:r3712
This commit is contained in:
Roger Dingledine 2005-02-28 09:39:12 +00:00
parent c5091e7134
commit b961d1c3bd

View File

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