diff options
| author | David S. Miller <[email protected]> | 2012-05-08 14:40:21 -0400 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2012-05-08 14:40:21 -0400 |
| commit | 9bb862beb6e5839e92f709d33fda07678f062f20 (patch) | |
| tree | a2c396712c5a2cda380034173fd07a67bfa0489f /include/linux/netfilter | |
| parent | b44907e64cc1987153f6577306108379be1523b7 (diff) | |
| parent | d16cf20e2f2f13411eece7f7fb72c17d141c4a84 (diff) | |
Merge branch 'master' of git://1984.lsi.us.es/net-next
Diffstat (limited to 'include/linux/netfilter')
| -rw-r--r-- | include/linux/netfilter/nf_conntrack_common.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/netfilter/nf_conntrack_common.h b/include/linux/netfilter/nf_conntrack_common.h index 0d3dd66322ec..d146872a0b91 100644 --- a/include/linux/netfilter/nf_conntrack_common.h +++ b/include/linux/netfilter/nf_conntrack_common.h @@ -83,6 +83,10 @@ enum ip_conntrack_status { /* Conntrack is a fake untracked entry */ IPS_UNTRACKED_BIT = 12, IPS_UNTRACKED = (1 << IPS_UNTRACKED_BIT), + + /* Conntrack got a helper explicitly attached via CT target. */ + IPS_HELPER_BIT = 13, + IPS_HELPER = (1 << IPS_HELPER_BIT), }; /* Connection tracking event types */ |