From 02e3e3327cedc1fc6015c74ef8180745f403dec3 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Thu, 23 Sep 2004 19:23:32 +0000 Subject: [PATCH] discourage people from setting their dirfetchpostperiod more often than once per minute svn:r2369 --- src/or/config.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/or/config.c b/src/or/config.c index 7e060efa19..4a746116f7 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -841,8 +841,9 @@ int getconfig(int argc, char **argv, or_options_t *options) { result = -1; } - if(options->DirFetchPostPeriod < 1) { - log(LOG_WARN,"DirFetchPostPeriod option must be positive."); +#define MIN_DIRFETCHPOSTPERIOD 60 + if(options->DirFetchPostPeriod < MIN_DIRFETCHPOSTPERIOD) { + log(LOG_WARN,"DirFetchPostPeriod option must be at least %d.", MIN_DIRFETCHPOSTPERIOD); result = -1; } if(options->DirFetchPostPeriod > MIN_ONION_KEY_LIFETIME/2) {