summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ipset 3.1 releasev3.1Jozsef Kadlecsik2009-08-1815-38/+76
| | | | | | | | | | | | | | A few minor bugs fixed and cleanups: - Nonexistent sets were reported as existing sets when testing from userspace in setlist type of sets (bug reported by Victor A. Safronov) - When saving sets, setlist type of sets must come last in order to satisfy the dependency from the elements (bug reported by Marty B.) - Sparse insists that the flags argument to kmalloc() is gfp_t (Stephen Hemminger) - Correct format specifiers and change %i to %d (Jan Engelhardt) - Fix the definition of 'bool' for kernels <= 2.6.18 (Jan Engelhardt)
* ipset 3.0 releasev3.0Jozsef Kadlecsik2009-05-1630-129/+143
| | | | | The main change is full bigendian and 64/32bit enviroment support - in consequence the kernel-userspace protocol version was bumped.
* Release v2.5.0.v2.5.0Jozsef Kadlecsik2009-03-063-1/+9
|
* Use spinlock initiator instead of setting the locks directly (Jan Engelhardt).Jozsef Kadlecsik2009-03-061-1/+1
|
* Respect LDFLAGS settings at compile time (Peter Volkov).Jozsef Kadlecsik2009-03-061-2/+2
|
* Fix alignment issue on parisc arhictecture (bugzilla id 582).Jozsef Kadlecsik2009-03-061-1/+2
|
* Manpage cleanup.Jozsef Kadlecsik2009-03-061-5/+1
|
* Update version in Makefilev2.4.9Jozsef Kadlecsik2009-02-111-1/+1
| | | | Update version number in userspace Makefile too.
* Use the new hash really.Jozsef Kadlecsik2009-02-117-6/+10
| | | | | References to the old include file replaced with new one in order to really use the new Jenkins' hash function.
* Kernel changelog on Jenkins' hash update.v2.4.8root2009-02-101-0/+2
| | | | Kernel changelog on Jenkins' hash update added.
* Jenkins' hash updatedroot2009-02-101-86/+95
| | | | | | | | | | | | | The old lookup2() Jenkins' hash is outdated, there is a new version called lookup3() which - mixes better than lookup2(): passes the check that every input bit changes every output bit 50% of the time - lookup2() failed it. - performs better: compiled with -O2 on Core2 Duo, lookup3() 20-40% faster than lookup2() depending on the key length. The patch replaces the lookup2() implementation of 'jhash*' with that of lookup3().
* Fix possible duplicates in hashesh.Jozsef Kadlecsik2009-02-106-39/+55
| | | | | | Bug fixed: after elements are added and deleted from a hash, an element can successfully be added in spite it's already in the hash and thus duplicates can occur. Bug spotted by Shih-Yi Chen.
* Compatibility: 'bool'Jozsef Kadlecsik2009-02-102-0/+7
| | | | Compatibility with old gcc without 'bool' added.
* Disable extra warning flagsJozsef Kadlecsik2009-02-103-1/+18
| | | | | In order to disable the extra warning flags, NO_EXTRA_WARN_FLAGS variable added to userspace Makefile.
* 2.4.72.4.7Jozsef Kadlecsik2009-01-281-1/+1
| | | | ipset Makefile updated to reflect bumping the version number.
* 2.4.7Jozsef Kadlecsik2009-01-282-1/+5
| | | | Typo which broke compilation with kernels < 2.6.28 fixed.
* 2.4.6v2.4.6Jozsef Kadlecsik2009-01-174-9/+54
| | | | Compatibility fix for kernels >= 2.6.28
* 2.4.5/C=EU/ST=EU/CN=Jozsef Kadlecsik/emailAddress=kadlec@blackhole.kfki.hu2008-11-1522-90/+118
| | | | | | - setlist type does not work properly together with swapping sets, bug reported by Thomas Jacob. - Include linux/capability.h explicitly in ip_set.c (Jan Engelhardt)
* 2.4.4/C=EU/ST=EU/CN=Jozsef Kadlecsik/emailAddress=kadlec@blackhole.kfki.hu2008-11-1324-199/+277
| | | | | | | | - Premature checking prevents to add valid elements to hash types, fixed (bug reported by JC Janos). - Local variable shadows another variable, fixed (reported by Jan Engelhardt). - More compiler warning options added and warnings fixed.
* Complete changelog line and fix typo./C=EU/ST=EU/CN=Jozsef Kadlecsik/emailAddress=kadlec@blackhole.kfki.hu2008-10-251-2/+2
|
* 2.4.3/C=EU/ST=EU/CN=Jozsef Kadlecsik/emailAddress=kadlec@blackhole.kfki.hu2008-10-2515-85/+88
| | | | | - Include file <limits.h> was missing from userspace set type modules.
* ipset 2.4.2:/C=EU/ST=EU/CN=Jozsef Kadlecsik/emailAddress=kadlec@blackhole.kfki.hu2008-10-2337-59/+103
| | | | | | | | - When flushing a nethash/ipportnethash type of set, it can lead to a kernel crash due to a wrong type declaration, bug reported by Krzysztof Oledzki. - iptree and iptreemap types require the header file linux/timer.h, also reported by Krzysztof Oledzki.
* - macipmap type reported misleading deprecated separator/C=EU/ST=EU/CN=Jozsef Kadlecsik/emailAddress=kadlec@blackhole.kfki.hu2008-10-219-27/+33
| | | | | | | | tokens and printed the old one at listing set elements. Token printing was errorneous too. (Bugs reported by Krzysztof Oledzki) - Warn only once about deprecated separator tokens in restore mode.
* As the manpage says, zero valued set entries cannot be used with /C=EU/ST=EU/CN=Jozsef Kadlecsik/emailAddress=kadlec@blackhole.kfki.hu2008-10-2110-1/+43
| | | | hash type of sets. Enforce the restriction.
* ipset 2.4 release/C=EU/ST=EU/CN=Jozsef Kadlecsik/emailAddress=kadlec@blackhole.kfki.hu2008-10-2060-2355/+3656
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | userspace changes: - Added KBUILD_OUTPUT support (Sven Wegener) - Fix memory leak in ipset_iptreemap (Sven Wegener) - Fix multiple compiler warnings (Sven Wegener) - ipportiphash, ipportnethash and setlist types added - binding marked as deprecated functionality - element separator token changed to ',' in anticipating IPv6 addresses, old separator tokens are still supported - unnecessary includes removed - ipset does not try to resolve IP addresses when listing the content of sets (default changed) - manpage updated - ChangeLog forked for kernel part kernel part changes: - ipportiphash, ipportnethash and setlist types added - set type modules reworked to avoid code duplication as much as possible, code unification macros - expand_macros Makefile target added to help debugging code unification macros - ip_set_addip_kernel and ip_set_delip_kernel changed from void to int, __ip_set_get_byname and __ip_set_put_byid added for the sake of setlist type - unnecessary includes removed - compatibility fix for kernels >= 2.6.27: semaphore.h was moved from asm/ to linux/ (James King) - ChangeLog forked for kernel part
* ChangeLog forked for kernel part + compatibility fix for kernels >= 2.6.27 added/C=EU/ST=EU/CN=Jozsef Kadlecsik/emailAddress=kadlec@blackhole.kfki.hu2008-09-023-0/+11
|
* Fix to compile ipset with 2.4.26.x tree statically./C=EU/ST=EU/CN=Jozsef Kadlecsik/emailAddress=kadlec@blackhole.kfki.hu2008-07-202-4/+8
|
* Compatibility cleanup release: kernels >= 2.6.16 and 2.4.36.x are supported./C=EU/ST=EU/CN=Jozsef Kadlecsik/emailAddress=kadlec@blackhole.kfki.hu2008-07-1937-505/+608
|
* Support statically linked kernel - no need for pom-ng anymore for ipset at all./C=EU/ST=EU/CN=Jozsef Kadlecsik/emailAddress=kadlec@blackhole.kfki.hu2008-07-035-6/+209
|
* Missing log line added./C=EU/ST=EU/CN=Jozsef Kadlecsik/emailAddress=kadlec@blackhole.kfki.hu2008-07-021-0/+1
|
* Initial ipset release with kernel modules included./C=EU/ST=EU/CN=Jozsef Kadlecsik/emailAddress=kadlec@blackhole.kfki.hu2008-07-0227-2/+7462
|
* Swen's patches applied:/C=EU/ST=EU/CN=Jozsef Kadlecsik/emailAddress=kadlec@blackhole.kfki.hu2008-07-024-12/+13
| | | | | - Remove needless casts from and to void pointers - testcase timeout race fix
* limits.h is required for UINT_MAX with glibc-2.8/C=EU/ST=EU/CN=Jozsef Kadlecsik/emailAddress=kadlec@blackhole.kfki.hu2008-06-176-0/+8
|
* ipset -U segfault fix committed./C=EU/ST=EU/CN=Jozsef Kadlecsik/emailAddress=kadlec@blackhole.kfki.hu2008-06-1217-23/+570
| | | | Testsuite added.
* Manpage update./C=EU/ST=EU/CN=Jozsef Kadlecsik/emailAddress=kadlec@blackhole.kfki.hu2007-08-281-0/+2
|
* New release: 2.3.0 (see ChangeLog)/C=EU/ST=EU/CN=Jozsef Kadlecsik/emailAddress=kadlec@blackhole.kfki.hu2007-08-289-29/+273
|
* Minor changes and return code bugfix/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=kadlec/emailAddress=kadlec@netfilter.org2006-10-0910-37/+127
|
* ipset 2.2.9 released/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=kadlec/emailAddress=kadlec@netfilter.org2006-05-083-3/+16
|
* Kernel fix documented in Changelog, version number bumped./C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=kadlec/emailAddress=kadlec@netfilter.org2005-12-032-1/+5
|
* Several fixes by Jones Desougi:/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=kadlec/emailAddress=kadlec@netfilter.org2005-11-248-26/+43
| | | | | | missing or confusing error message fixes for ipporthash minor correction in debugging in nethash unified memory allocations in ipset
* Manpage extended with a few words to explain iptree type of sets/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=kadlec/emailAddress=kadlec@netfilter.org2005-10-283-3/+13
| | | | and timing out entries.
* ipporthash set type added plus manpage corrections (JK)/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=kadlec/emailAddress=kadlec@netfilter.org2005-10-1312-32/+488
|
* 2.2.4 released, see fixes in pom-ng/set/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=kadlec/emailAddress=kadlec@netfilter.org2005-09-3010-61/+83
|
* 2.2.3 version releases: manpage fix in ipset, TODO file added/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=kadlec/emailAddress=kadlec@netfilter.org2005-09-144-1/+15
|
* Manpage fix and bumping the version number/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=kadlec/emailAddress=kadlec@netfilter.org2005-07-203-2/+8
|
* Parser bug, fixed by Tom Eastep/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=kadlec/emailAddress=kadlec@netfilter.org2005-05-091-1/+1
|
* new feature added: IP addresses in nethash type of sets can be tested/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=kadlec/emailAddress=kadlec@netfilter.org2005-04-193-9/+18
|
* Forgot to add the file :-)/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=kadlec/emailAddress=kadlec@netfilter.org2005-04-111-0/+223
|
* iptree set type added/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=kadlec/emailAddress=kadlec@netfilter.org2005-04-113-3/+71
|
* ipset 2.1.1 released/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=kadlec/emailAddress=kadlec@netfilter.org2005-04-054-16/+64
|