aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/netfilter/nf_conntrack_common.h1
-rw-r--r--include/net/netfilter/nf_conntrack_expect.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/netfilter/nf_conntrack_common.h b/include/linux/netfilter/nf_conntrack_common.h
index fdc50cae861f..23a1a08578a8 100644
--- a/include/linux/netfilter/nf_conntrack_common.h
+++ b/include/linux/netfilter/nf_conntrack_common.h
@@ -103,6 +103,7 @@ enum ip_conntrack_expect_events {
103/* expectation flags */ 103/* expectation flags */
104#define NF_CT_EXPECT_PERMANENT 0x1 104#define NF_CT_EXPECT_PERMANENT 0x1
105#define NF_CT_EXPECT_INACTIVE 0x2 105#define NF_CT_EXPECT_INACTIVE 0x2
106#define NF_CT_EXPECT_USERSPACE 0x4
106 107
107#ifdef __KERNEL__ 108#ifdef __KERNEL__
108struct ip_conntrack_stat { 109struct ip_conntrack_stat {
diff --git a/include/net/netfilter/nf_conntrack_expect.h b/include/net/netfilter/nf_conntrack_expect.h
index 96bb42af5fae..416b83844485 100644
--- a/include/net/netfilter/nf_conntrack_expect.h
+++ b/include/net/netfilter/nf_conntrack_expect.h
@@ -85,6 +85,7 @@ nf_ct_find_expectation(struct net *net, u16 zone,
85void nf_ct_unlink_expect(struct nf_conntrack_expect *exp); 85void nf_ct_unlink_expect(struct nf_conntrack_expect *exp);
86void nf_ct_remove_expectations(struct nf_conn *ct); 86void nf_ct_remove_expectations(struct nf_conn *ct);
87void nf_ct_unexpect_related(struct nf_conntrack_expect *exp); 87void nf_ct_unexpect_related(struct nf_conntrack_expect *exp);
88void nf_ct_remove_userspace_expectations(void);
88 89
89/* Allocate space for an expectation: this is mandatory before calling 90/* Allocate space for an expectation: this is mandatory before calling
90 nf_ct_expect_related. You will have to call put afterwards. */ 91 nf_ct_expect_related. You will have to call put afterwards. */