From: Kevin Webb Date: Fri, 21 Nov 2008 23:54:21 +0000 (+0000) Subject: Tweaked the timing of flow expiration back down. X-Git-Tag: DistributedRateLimiting-0.1-0~36 X-Git-Url: http://git.onelab.eu/?p=distributedratelimiting.git;a=commitdiff_plain;h=da2e1847da1c3ece4b1a8685de49d972aed48178 Tweaked the timing of flow expiration back down. --- diff --git a/drl/raterouter.h b/drl/raterouter.h index 958ef4e..789cd95 100644 --- a/drl/raterouter.h +++ b/drl/raterouter.h @@ -41,7 +41,7 @@ enum accountings { ACT_STANDARD = 1, ACT_SAMPLEHOLD = 2, ACT_SIMPLE = 3 }; #define COMM_DEFS /* global constants */ -#define IDENT_CLEAN_INTERVAL 10 /* in seconds */ +#define IDENT_CLEAN_INTERVAL 5 /* in seconds */ #define LIMITER_LISTEN_PORT 9001 diff --git a/drl/standard.h b/drl/standard.h index d5799d6..d54aa3e 100644 --- a/drl/standard.h +++ b/drl/standard.h @@ -16,7 +16,7 @@ /** The number of seconds after which a flow is considered to be inactive. * Inactive flows will be removed from the table during the next call to the * cleanup function. */ -#define FLOW_IDLE_TIME 30 +#define FLOW_IDLE_TIME 15 /** Representation of a flow in a standard table. */ typedef struct std_flow {