From: Roger Dingledine Date: Mon, 12 Apr 2004 09:44:38 +0000 (+0000) Subject: bump allowed rend desc skew from 60 mins to 90 mins X-Git-Tag: tor-0.0.6incompat-merged~51 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2321d21b3b49899684817f8f63560347cd6d5d24;p=thirdparty%2Ftor.git bump allowed rend desc skew from 60 mins to 90 mins svn:r1593 --- diff --git a/src/or/rendcommon.c b/src/or/rendcommon.c index cec26a615a..91ec38b962 100644 --- a/src/or/rendcommon.c +++ b/src/or/rendcommon.c @@ -136,8 +136,8 @@ int rend_get_service_id(crypto_pk_env_t *pk, char *out) } /* ==== Rendezvous service descriptor cache. */ -#define REND_CACHE_MAX_AGE 24*60*60 -#define REND_CACHE_MAX_SKEW 60*60 +#define REND_CACHE_MAX_AGE (24*60*60) +#define REND_CACHE_MAX_SKEW (90*60) static strmap_t *rend_cache = NULL;