diff options
Diffstat (limited to 'src/or/directory.c')
-rw-r--r-- | src/or/directory.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/or/directory.c b/src/or/directory.c index 2ac9807ac..6565e5817 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -56,7 +56,9 @@ static void note_request(const char *key, size_t bytes); static addr_policy_t *dir_policy = NULL; -#define ALLOW_DIRECTORY_TIME_SKEW 30*60 /* 30 minutes */ +/** How far in the future do we allow a directory server to tell us it is + * before deciding that one of us has the wrong time? */ +#define ALLOW_DIRECTORY_TIME_SKEW (30*60) /********* END VARIABLES ************/ |