소스 검색

Nominaly lower the minimum timeout value to 1500.

This won't change any behavior, since it will still be rounded back
up to 2seconds, but should reduce the chances of some extra warns.
Mike Perry 15 년 전
부모
커밋
7eedd0f6bc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/or/or.h

+ 1 - 1
src/or/or.h

@@ -2996,7 +2996,7 @@ double circuit_build_times_quantile_cutoff(void);
 #define CBT_DEFAULT_TEST_FREQUENCY 60
 
 /** Lowest allowable value for CircuitBuildTimeout in milliseconds */
-#define CBT_DEFAULT_TIMEOUT_MIN_VALUE (2*1000)
+#define CBT_DEFAULT_TIMEOUT_MIN_VALUE (1500)
 
 /** Initial circuit build timeout in milliseconds */
 #define CBT_DEFAULT_TIMEOUT_INITIAL_VALUE (60*1000)