summaryrefslogtreecommitdiffstats
path: root/include/ulogd/hash.h
Commit message (Collapse)AuthorAgeFilesLines
* NFCT: use new hashtable implementation for better performancePablo Neira Ayuso2010-01-171-19/+15
| | | | | | | | This patch replaces the existing hashtable implementation with a newer that provide better performance since it reduces the number of hash computations. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
* rework NFCT to use a generic hashtablePablo Neira Ayuso2008-06-021-0/+48
This patch introduces a generic hashtable to store the nf_conntrack objects. The objects are identified by the original and reply tuples instead of the conntrack ID which is not dumped in the event message of linux kernel < 2.6.25. This patch also fixes the NFCT_MSG_* by NFCT_T_* which is the appropriate message type tag.