From 8ca32474125483ae58e93e2822a8e5af9f9b72ab Mon Sep 17 00:00:00 2001 From: "/C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org" Date: Sun, 13 May 2007 23:42:43 +0000 Subject: - split new_api_test.c into several conntrack_*.c files to learn much easier how the new API works --- utils/conntrack_flush.c | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 utils/conntrack_flush.c (limited to 'utils/conntrack_flush.c') diff --git a/utils/conntrack_flush.c b/utils/conntrack_flush.c new file mode 100644 index 0000000..43e8d78 --- /dev/null +++ b/utils/conntrack_flush.c @@ -0,0 +1,28 @@ +#include +#include +#include + +#include + +int main() +{ + int ret; + u_int8_t family = AF_INET; + struct nfct_handle *h; + char buf[1024]; + + h = nfct_open(CONNTRACK, 0); + if (!h) { + perror("nfct_open"); + return -1; + } + + ret = nfct_query(h, NFCT_Q_FLUSH, &family); + + printf("TEST: flush conntrack (%d)(%s)\n", ret, strerror(errno)); + + if (ret == -1) + exit(EXIT_FAILURE); + + nfct_close(h); +} -- cgit v1.2.3