From 32d1d2fa35c6ff61ce376f9f5eb734132599ff44 Mon Sep 17 00:00:00 2001 From: Jozsef Kadlecsik Date: Fri, 6 May 2011 22:08:09 +0200 Subject: Fix adding ranges to hash types When ranges are added to hash types, the elements may trigger rehashing the set. However, the last successfully added element was not kept track so the adding started again with the first element after the rehashing. Bug reported by Mr Dash Four. --- tests/hash:ip.t | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'tests/hash:ip.t') diff --git a/tests/hash:ip.t b/tests/hash:ip.t index e21ab6e..10a1809 100644 --- a/tests/hash:ip.t +++ b/tests/hash:ip.t @@ -60,6 +60,14 @@ 0 n=`ipset -S test | wc -l` && test $n -eq 8161 # IP: Destroy sets 0 ipset -X +# IP: Create set to add a range +0 ipset new test hash:ip hashsize 64 +# IP: Add a range which forces a resizing +0 ipset add test 10.0.0.0-10.0.3.255 +# IP: Check that correct number of elements are added +0 n=`ipset list test|grep 10.0|wc -l` && test $n -eq 1024 +# IP: Destroy sets +0 ipset -X # Network: Create a set with timeout 0 ipset -N test iphash --hashsize 128 --netmask 24 timeout 5 # Network: Add zero valued element -- cgit v1.2.3