summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGravatar David Benjamin <davidben@mit.edu>2013-08-19 05:49:56 -0400
committerGravatar Karl Ramm <kcr@1ts.org>2013-09-28 13:45:17 -0400
commit241ec6e5c75b6872a32c5e05c17ebb4238e120e0 (patch)
tree0e32140698f4707d8027727ca0bef7c92c815b54 /lib
parentfa474fe09f89d69a058eb85c863c8778e9dfb77a (diff)
Bump find_or_insert_uid's time limit
Basing it on krb4's CLOCK_SKEW value doesn't make any sense. We pick 900 because it is just over 128 + 256 + 512, the longest group of three timeouts in the retransmit schedule used by the zephyrd. This allows us to miss two packets in a row and still be fine.
Diffstat (limited to 'lib')
-rw-r--r--lib/Zinternal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Zinternal.c b/lib/Zinternal.c
index ace1a81..07cd342 100644
--- a/lib/Zinternal.c
+++ b/lib/Zinternal.c
@@ -145,9 +145,9 @@ find_or_insert_uid(ZUnique_Id_t *uid,
return 0;
}
- /* Age the uid buffer, discarding any uids older than the clock skew. */
+ /* Age the uid buffer, discarding any uids older than the time limit. */
time(&now);
- while (num && (now - buffer[start % size].t) > CLOCK_SKEW)
+ while (num && (now - buffer[start % size].t) > Z_FILTERTIMELIMIT)
start++, num--;
start %= size;