From 74f52acf84cbf11faab8aa53e069464063ce11b9 Mon Sep 17 00:00:00 2001 From: Kevin Webb Date: Tue, 16 Dec 2008 01:50:28 +0000 Subject: [PATCH] New flows now get the last table update time rather than the current time. --- drl/standard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drl/standard.c b/drl/standard.c index f035215..f8f813c 100644 --- a/drl/standard.c +++ b/drl/standard.c @@ -86,7 +86,7 @@ standard_flow *standard_table_lookup(standard_flow_table table, const key_flow * flow->source_port = key->source_port; flow->dest_port = key->dest_port; flow->last_packet = key->packet_time; - gettimeofday(&flow->last_update, NULL); + flow->last_update = table->common->last_update; /* Add the flow to the hash list. */ flow->nexth = table->flows[hash]; -- 2.43.0