浏览代码

if somebody starts his tor server in jan 2004 and then fixes his
clock, don't make his published uptime be a year.


svn:r3337

Roger Dingledine 21 年之前
父节点
当前提交
70b3208f0a
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      src/or/main.c

+ 3 - 1
src/or/main.c

@@ -765,7 +765,9 @@ static int prepare_for_poll(void) {
     stats_prev_global_read_bucket = global_read_bucket;
     stats_prev_global_write_bucket = global_write_bucket;
 
-    stats_n_seconds_working += seconds_elapsed;
+    /* if more than 10s have elapsed, probably the clock changed: doesn't count. */
+    if (seconds_elapsed < 10)
+      stats_n_seconds_working += seconds_elapsed;
 
     assert_all_pending_dns_resolves_ok();
     run_scheduled_events(now.tv_sec);