summaryrefslogtreecommitdiffstats
path: root/utils/ctnl_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'utils/ctnl_test.c')
-rw-r--r--utils/ctnl_test.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/ctnl_test.c b/utils/ctnl_test.c
index 9f4f28e..497f178 100644
--- a/utils/ctnl_test.c
+++ b/utils/ctnl_test.c
@@ -41,6 +41,7 @@ int main(int argc, char **argv)
struct nfct_tuple orig = {
.src = { .v4 = inet_addr("1.1.1.1") },
.dst = { .v4 = inet_addr("2.2.2.2") },
+ .l3protonum = AF_INET,
.protonum = IPPROTO_TCP,
.l4src = { .tcp = { .port = 10 } },
.l4dst = { .tcp = { .port = 20 } }
@@ -48,6 +49,7 @@ int main(int argc, char **argv)
struct nfct_tuple reply = {
.src = { .v4 = inet_addr("2.2.2.2") },
.dst = { .v4 = inet_addr("1.1.1.1") },
+ .l3protonum = AF_INET,
.protonum = IPPROTO_TCP,
.l4src = { .tcp = { .port = 20 } },
.l4dst = { .tcp = { .port = 10 } }