]> bbs.cooldavid.org Git - net-next-2.6.git/blobdiff - include/linux/netfilter/nf_conntrack_common.h
netfilter: nf_conntrack: IPS_UNTRACKED bit
[net-next-2.6.git] / include / linux / netfilter / nf_conntrack_common.h
index c608677dda60ac4eda7d96945f68ee22897529c1..1afd18c855ec99d9cf8cb4b9570b06b6e28b74d2 100644 (file)
@@ -76,6 +76,10 @@ enum ip_conntrack_status {
        /* Conntrack is a template */
        IPS_TEMPLATE_BIT = 11,
        IPS_TEMPLATE = (1 << IPS_TEMPLATE_BIT),
+
+       /* Conntrack is a fake untracked entry */
+       IPS_UNTRACKED_BIT = 12,
+       IPS_UNTRACKED = (1 << IPS_UNTRACKED_BIT),
 };
 
 /* Connection tracking event types */
@@ -113,6 +117,7 @@ struct ip_conntrack_stat {
        unsigned int expect_new;
        unsigned int expect_create;
        unsigned int expect_delete;
+       unsigned int search_restart;
 };
 
 /* call to create an explicit dependency on nf_conntrack. */