summaryrefslogtreecommitdiffstats
path: root/tests/hash:net6,port.t
Commit message (Collapse)AuthorAgeFilesLines
* Exceptions support added to hash:*net* typesJozsef Kadlecsik2012-01-131-0/+38
| | | | | | | | | | | | The "nomatch" keyword and option is added to the hash:*net* types, by which one can add exception entries to sets. Example: ipset create test hash:net ipset add test 192.168.0/24 ipset add test 192.168.0/30 nomatch In this case the IP addresses from 192.168.0/24 except 192.168.0/30 match the elements of the set.
* Tests added to check ICMP/ICMPv6 type/code parsingJozsef Kadlecsik2011-11-241-0/+6
|
* Fix adding ranges to hash typesJozsef Kadlecsik2011-05-061-0/+8
| | | | | | 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.
* Use unified diff output in testsJozsef Kadlecsik2011-04-111-3/+3
|
* Testsuite changes: keep temporary filesJozsef Kadlecsik2011-04-081-3/+3
| | | | | Keep temporary files in the tests and erase them only after successfully running the testsuite. This makes simpler to analyze failed tests.
* Test cases for IPv6 restore and more complex restore sessions added.Jozsef Kadlecsik2010-12-221-0/+10
|
* Add more test to check adding/deleting multiple entries.Jozsef Kadlecsik2010-12-171-0/+6
|
* Speed up testing a little bitJozsef Kadlecsik2010-12-131-3/+3
| | | | Lower timeout values to max 5s, so we can lower sleep values too.
* Fixes, cleanups, commentsv5.0-pre8Jozsef Kadlecsik2010-10-241-0/+51
- More comments added to the code - ICMP and ICMPv6 support added to the hash:ip,port, hash:ip,port,ip and hash:ip,port,net types - hash:net and hash:ip,port,net types are reworked - hash:net,port type added - Wrong direction parameters fixed in hash:ip,port - Helps and manpage are updated - More tests added - Ugly macros are rewritten to functions in parse.c (Holger Eitzenberger) - resize related bug in hash types fixed (Holger Eitzenberger) - autoreconf patches by Jan Engelhardt applied - netlink patch minimalized: dumping can be initialized by a second parsing of the message (thanks to David and Patrick for the suggestion) - IPv4/IPv6 address attributes are introduced in order to fix the context (suggested by David)