diff options
author | laforge <laforge> | 2004-07-23 04:14:12 +0000 |
---|---|---|
committer | laforge <laforge> | 2004-07-23 04:14:12 +0000 |
commit | d4bb5b3c36a1cbd17a2d59a9f3fc626b2dd3352d (patch) | |
tree | c7142a4dd9afe6430c576d44ee58d7f773e29c40 /input/packet | |
parent | 131920eca1d2780da1275b50ab89024f3e01928b (diff) |
move more stuff from ulogd.c to libulog plugin
Diffstat (limited to 'input/packet')
-rw-r--r-- | input/packet/ulogd_inppkt_ULOG.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/input/packet/ulogd_inppkt_ULOG.c b/input/packet/ulogd_inppkt_ULOG.c index 5cc3a58..f44638b 100644 --- a/input/packet/ulogd_inppkt_ULOG.c +++ b/input/packet/ulogd_inppkt_ULOG.c @@ -7,6 +7,17 @@ #include <libipulog/libipulog.h> +/* Size of the socket recevive memory. Should be at least the same size as the + * 'nlbufsiz' module loadtime parameter of ipt_ULOG.o + * If you have _big_ in-kernel queues, you may have to increase this number. ( + * --qthreshold 100 * 1500 bytes/packet = 150kB */ +#define ULOGD_RMEM_DEFAULT 131071 + +/* Size of the receive buffer for the netlink socket. Should be at least of + * RMEM_DEFAULT size. */ +#define ULOGD_BUFSIZE_DEFAULT 150000 + + static config_entry_t bufsiz_ce = { NULL, "bufsize", CONFIG_TYPE_INT, CONFIG_OPT_NONE, 0, { value: ULOGD_BUFSIZE_DEFAULT } }; |