/* * Test for the filter API */ #include #include #include #include #include #include static int event_cb(enum nf_conntrack_msg_type type, struct nf_conntrack *ct, void *data) { static int n = 0; char buf[1024]; nfct_snprintf(buf, sizeof(buf), ct, type, NFCT_O_PLAIN, NFCT_OF_TIME); printf("%s\n", buf); if (++n == 10) return NFCT_CB_STOP; return NFCT_CB_CONTINUE; } int main(void) { int i, ret; struct nfct_handle *h; struct nfct_filter *filter; h = nfct_open(CONNTRACK, NF_NETLINK_CONNTRACK_NEW | NF_NETLINK_CONNTRACK_UPDATE); if (!h) { perror("nfct_open"); return 0; } filter = nfct_filter_create(); if (!filter) { perror("nfct_create_filter"); return 0; } if (nfct_filter_attach(nfct_fd(h), filter) == -1) { perror("nfct_filter_attach"); return 0; } /* protocol 255 is skipped since we support up to 255 protocols max */ for (i=0; i