1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| #include <stdio.h>
| #include <stdlib.h>
| #include <string.h>
| #include <errno.h>
|
| #include <libnetfilter_conntrack/libnetfilter_conntrack.h>
|
| int main(void)
| {
| int ret;
| uint8_t family = AF_INET;
| struct nfct_handle *h;
|
| h = nfct_open(EXPECT, 0);
| if (!h) {
| perror("nfct_open");
| return -1;
| }
|
| ret = nfexp_query(h, NFCT_Q_FLUSH, &family);
|
| printf("TEST: flush expectations ");
| if (ret == -1)
| printf("(%d)(%s)\n", ret, strerror(errno));
| else
| printf("(OK)\n");
|
| nfct_close(h);
|
| ret == -1 ? exit(EXIT_FAILURE) : exit(EXIT_SUCCESS);
| }
|
|