return -1;
}
server_has_changed_ip();
- if (has_completed_circuit ||
- rep_hist_circbuilding_dormant(time(NULL)))
+ if (has_completed_circuit || any_predicted_circuits(time(NULL)))
inform_testing_reachability();
}
cpuworkers_rotate();
}
if (server_mode(options) && !we_are_hibernating() && !from_cache &&
- (has_completed_circuit || rep_hist_circbuilding_dormant(now)))
+ (has_completed_circuit || any_predicted_circuits(now)))
consider_testing_reachability();
}
/* also, check religiously for reachability, if it's within the first
* 20 minutes of our uptime. */
if (server_mode(options) &&
- (has_completed_circuit || rep_hist_circbuilding_dormant(now)) &&
+ (has_completed_circuit || any_predicted_circuits(now)) &&
stats_n_seconds_working < TIMEOUT_UNTIL_UNREACHABILITY_COMPLAINT &&
!we_are_hibernating())
consider_testing_reachability();
int rep_hist_get_predicted_internal(time_t now, int *need_uptime,
int *need_capacity);
+int any_predicted_circuits(time_t now);
int rep_hist_circbuilding_dormant(time_t now);
void rep_hist_free_all(void);
return 1;
}
+/** Any ports used lately? These are pre-seeded if we just started
+ * up or if we're running a hidden service. */
+int
+any_predicted_circuits(time_t now)
+{
+ return smartlist_len(predicted_ports_list) ||
+ predicted_internal_time + PREDICTED_CIRCS_RELEVANCE_TIME >= now;
+}
+
/** Return 1 if we have no need for circuits currently, else return 0. */
int
rep_hist_circbuilding_dormant(time_t now)
{
- /* Any ports used lately? These are pre-seeded if we just started
- * up or if we're running a hidden service. */
- if (smartlist_len(predicted_ports_list) ||
- predicted_internal_time + PREDICTED_CIRCS_RELEVANCE_TIME >= now)
+ if (any_predicted_circuits(now))
return 0;
/* see if we'll still need to build testing circuits */