소스 검색

Remove about 30% of the v1 directory bulk by not including down or
invalid nodes.

This will make exitlist's running on v1 not very good. I feel sorry for
them, but not as sorry as I feel for the directory mirrors.


svn:r6332

Roger Dingledine 19 년 전
부모
커밋
0871f4ef90
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 2
      src/or/dirserv.c

+ 0 - 2
src/or/dirserv.c

@@ -752,10 +752,8 @@ live_enough_for_v1_dir(routerinfo_t *ri, time_t now)
   time_t cutoff = now - ROUTER_MAX_AGE_TO_PUBLISH;
   if (ri->cache_info.published_on < cutoff)
     return 0;
-#if 0
   if (!ri->is_running || !ri->is_valid)
     return 0;
-#endif
   return 1;
 }