mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
simplify timing checks
now that both timers are on the same schedule, there's no point tracking separate timers.
This commit is contained in:
parent
5911fc0c17
commit
b166e9edb9
@ -1157,7 +1157,6 @@ run_scheduled_events(time_t now)
|
||||
static time_t time_to_check_v3_certificate = 0;
|
||||
static time_t time_to_check_listeners = 0;
|
||||
static time_t time_to_check_descriptor = 0;
|
||||
static time_t time_to_check_ipaddress = 0;
|
||||
static time_t time_to_shrink_memory = 0;
|
||||
static time_t time_to_try_getting_descriptors = 0;
|
||||
static time_t time_to_reset_descriptor_failures = 0;
|
||||
@ -1403,11 +1402,10 @@ run_scheduled_events(time_t now)
|
||||
/** 2. Periodically, we consider force-uploading our descriptor
|
||||
* (if we've passed our internal checks). */
|
||||
|
||||
/** How often do we check whether part of our router info has changed in a way
|
||||
* that would require an upload? */
|
||||
/** How often do we check whether part of our router info has changed in a
|
||||
* way that would require an upload? That includes checking whether our IP
|
||||
* address has changed. */
|
||||
#define CHECK_DESCRIPTOR_INTERVAL (60)
|
||||
/** How often do we (as a router) check whether our IP address has changed? */
|
||||
#define CHECK_IPADDRESS_INTERVAL (60)
|
||||
|
||||
/* 2b. Once per minute, regenerate and upload the descriptor if the old
|
||||
* one is inaccurate. */
|
||||
@ -1415,10 +1413,7 @@ run_scheduled_events(time_t now)
|
||||
static int dirport_reachability_count = 0;
|
||||
time_to_check_descriptor = now + CHECK_DESCRIPTOR_INTERVAL;
|
||||
check_descriptor_bandwidth_changed(now);
|
||||
if (time_to_check_ipaddress < now) {
|
||||
time_to_check_ipaddress = now + CHECK_IPADDRESS_INTERVAL;
|
||||
check_descriptor_ipaddress_changed(now);
|
||||
}
|
||||
check_descriptor_ipaddress_changed(now);
|
||||
mark_my_descriptor_dirty_if_too_old(now);
|
||||
consider_publishable_server(0);
|
||||
/* also, check religiously for reachability, if it's within the first
|
||||
|
Loading…
Reference in New Issue
Block a user