From: Kevin Webb Date: Tue, 16 Dec 2008 01:50:28 +0000 (+0000) Subject: New flows now get the last table update time rather than the current time. X-Git-Tag: DistributedRateLimiting-0.1-0~32 X-Git-Url: http://git.onelab.eu/?p=distributedratelimiting.git;a=commitdiff_plain;h=74f52acf84cbf11faab8aa53e069464063ce11b9 New flows now get the last table update time rather than the current time. --- 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];