diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/ignore_pool.c | 5 |
2 files changed, 4 insertions, 2 deletions
@@ -16,6 +16,7 @@ o syslog support (based on patch from Simon Lodal) o add CacheWriteThrough clause: external cache write through policy o add support for secmark (requires Linux kernel >= 2.6.25) o add conntrackd (8) manpage +o raise ignorepool maximum limit from 1024 to INT_MAX version 0.9.5 (2007/07/29) ------------------------------ diff --git a/src/ignore_pool.c b/src/ignore_pool.c index d6f0e93..619c2fa 100644 --- a/src/ignore_pool.c +++ b/src/ignore_pool.c @@ -22,8 +22,9 @@ #include "ignore.h" #include <libnetfilter_conntrack/libnetfilter_conntrack.h> -#define IGNORE_POOL_SIZE 32 -#define IGNORE_POOL_LIMIT 1024 +/* XXX: These should be configurable */ +#define IGNORE_POOL_SIZE 128 +#define IGNORE_POOL_LIMIT INT_MAX static u_int32_t hash(const void *data, struct hashtable *table) { |