diff options
author | /C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=pablo/emailAddress=pablo@netfilter.org </C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=pablo/emailAddress=pablo@netfilter.org> | 2005-10-05 16:33:52 +0000 |
---|---|---|
committer | /C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=pablo/emailAddress=pablo@netfilter.org </C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=pablo/emailAddress=pablo@netfilter.org> | 2005-10-05 16:33:52 +0000 |
commit | f179e8af468c573d4a643fcd38980e0beeeecdbc (patch) | |
tree | 55aa7d9278cdd7a6f9b6054bd3408b19b078c354 /include | |
parent | 2b90455785ce4d4b304407994e379068df80aefd (diff) | |
download | conntrack-tools-f179e8af468c573d4a643fcd38980e0beeeecdbc.tar.gz conntrack-tools-f179e8af468c573d4a643fcd38980e0beeeecdbc.zip |
o Fix up counters
o Fix up compilation (IPS_* stuff missing), still need a proper fix
Diffstat (limited to 'include')
-rw-r--r-- | include/libct_proto.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/libct_proto.h b/include/libct_proto.h index 8849a3e..b358e1a 100644 --- a/include/libct_proto.h +++ b/include/libct_proto.h @@ -9,6 +9,13 @@ #define LIBCT_VERSION "0.1.0" +/* FIXME: These should be independent from kernel space */ +#define IPS_ASSURED (1 << 2) +#define IPS_SEEN_REPLY (1 << 1) +#define IPS_SRC_NAT_DONE (1 << 7) +#define IPS_DST_NAT_DONE (1 << 8) +#define IPS_CONFIRMED (1 << 3) + struct cta_proto; struct ctproto_handler { |