diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2012-05-15 01:51:29 +0200 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2012-05-31 17:32:40 +0200 |
commit | 9a78dae24869d94d65aebe077c11eac6495b5ae1 (patch) | |
tree | a1f85d1ff0842284b7ea385b4489c5b762d35374 /src/main.c | |
parent | e47233151ca5098b268281329b119a398918d75f (diff) | |
download | conntrack-tools-9a78dae24869d94d65aebe077c11eac6495b5ae1.tar.gz conntrack-tools-9a78dae24869d94d65aebe077c11eac6495b5ae1.zip |
conntrackd: add cthelper infrastructure (+ example FTP helper)
This patch adds the user-space helper infrastructure. It also
contains the implementation of the FTP helper in user-space.
There's one example file that you can use to configure conntrackd
as user-space connection tracking helper under:
doc/helper/conntrackd.conf
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -19,6 +19,7 @@ #include "conntrackd.h" #include "log.h" +#include "helper.h" #include <sys/types.h> #include <sys/stat.h> @@ -31,7 +32,7 @@ #include <limits.h> struct ct_general_state st; -union ct_state state; +struct ct_state state; static const char usage_daemon_commands[] = "Daemon mode commands:\n" |