commit 71e73a102aef3c32be7566795884dfaa981f343d Author: Alexandre Allaire alexandre.allaire@mail.mcgill.ca Date: Fri Feb 8 09:52:52 2013 -0500
Increase default and minimum polling intervals.
Increase DEFAULT_FACILITATOR_POLL_INTERVAL to 3600 seconds and increase MIN_FACILITATOR_POLL_INTERVAL to 10 seconds. --- proxy/flashproxy.js | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/proxy/flashproxy.js b/proxy/flashproxy.js index d44c2f1..47f5df4 100644 --- a/proxy/flashproxy.js +++ b/proxy/flashproxy.js @@ -64,8 +64,8 @@ var DEFAULT_FACILITATOR_URL = "https://tor-facilitator.bamsoftware.com/"; var DEFAULT_MAX_NUM_PROXY_PAIRS = 10;
var DEFAULT_INITIAL_FACILITATOR_POLL_INTERVAL = 60.0; -var DEFAULT_FACILITATOR_POLL_INTERVAL = 600.0; -var MIN_FACILITATOR_POLL_INTERVAL = 1.0; +var DEFAULT_FACILITATOR_POLL_INTERVAL = 3600.0; +var MIN_FACILITATOR_POLL_INTERVAL = 10.0;
/* Bytes per second. Set to undefined to disable limit. */ var DEFAULT_RATE_LIMIT = undefined;
tor-commits@lists.torproject.org