Tweaked the timing of flow expiration.
authorKevin Webb <kcwebb@ucsd.edu>
Thu, 20 Nov 2008 21:20:26 +0000 (21:20 +0000)
committerKevin Webb <kcwebb@ucsd.edu>
Thu, 20 Nov 2008 21:20:26 +0000 (21:20 +0000)
drl/raterouter.h
drl/standard.h

index e6de5e9..958ef4e 100644 (file)
@@ -41,7 +41,8 @@ enum accountings { ACT_STANDARD = 1, ACT_SAMPLEHOLD = 2, ACT_SIMPLE = 3 };
 #define COMM_DEFS
 
 /* global constants */
-#define IDENT_CLEAN_INTERVAL 5 /* in seconds */
+#define IDENT_CLEAN_INTERVAL 10 /* in seconds */
+
 #define LIMITER_LISTEN_PORT 9001
 
 /**
index 59c45f7..d5799d6 100644 (file)
@@ -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 10
+#define FLOW_IDLE_TIME 30
 
 /** Representation of a flow in a standard table. */
 typedef struct std_flow {