summaryrefslogtreecommitdiffstats
path: root/src/conntrack.c
diff options
context:
space:
mode:
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-08-08 11:43:51 +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-08-08 11:43:51 +0000
commit496dbfa8a0d9ae7bc432873dfb2ef3b41087acd5 (patch)
treed76da64d9680a5e54461b43f4aaf1adf98fa3c9e /src/conntrack.c
parent8354fefa19bdaadb19a8fd0a818a7097e24bceaf (diff)
Bumped version to 0.80
Diffstat (limited to 'src/conntrack.c')
-rw-r--r--src/conntrack.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/conntrack.c b/src/conntrack.c
index ccfb71a..12825b4 100644
--- a/src/conntrack.c
+++ b/src/conntrack.c
@@ -47,7 +47,7 @@
#include "libct_proto.h"
#define PROGNAME "conntrack"
-#define VERSION "0.63"
+#define VERSION "0.80"
#if 0
#define DEBUGP printf
@@ -880,13 +880,11 @@ int main(int argc, char *argv[])
case EXP_CREATE:
if (options & CT_OPT_ORIG)
res = create_expectation(&orig,
- CTA_TUPLE_ORIG,
&exptuple,
&mask,
timeout);
else if (options & CT_OPT_REPL)
res = create_expectation(&reply,
- CTA_TUPLE_REPLY,
&exptuple,
&mask,
timeout);
@@ -917,16 +915,16 @@ int main(int argc, char *argv[])
case EXP_DELETE:
if (options & CT_OPT_ORIG)
- res = delete_expectation(&orig, CTA_TUPLE_ORIG);
+ res = delete_expectation(&orig);
else if (options & CT_OPT_REPL)
- res = delete_expectation(&reply, CTA_TUPLE_REPLY);
+ res = delete_expectation(&reply);
break;
case CT_GET:
if (options & CT_OPT_ORIG)
- res = get_conntrack(&orig, CTA_TUPLE_ORIG, id);
+ res = get_conntrack(&orig, id);
else if (options & CT_OPT_REPL)
- res = get_conntrack(&reply, CTA_TUPLE_REPLY, id);
+ res = get_conntrack(&reply, id);
break;
case EXP_GET: