aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/netfilter/ipv6/nf_conntrack_icmpv6.h
blob: 86591afda29c42425d839b7695f7269485d087e7 (plain)
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
/*
 * ICMPv6 tracking.
 *
 * 21 Apl 2004: Yasuyuki Kozakai @USAGI <yasuyuki.kozakai@toshiba.co.jp>
 *	- separated from nf_conntrack_icmp.h
 *
 * Derived from include/linux/netfiter_ipv4/ip_conntrack_icmp.h
 */

#ifndef _NF_CONNTRACK_ICMPV6_H
#define _NF_CONNTRACK_ICMPV6_H
#include <asm/atomic.h>

#ifndef ICMPV6_NI_QUERY
#define ICMPV6_NI_QUERY 139
#endif
#ifndef ICMPV6_NI_REPLY
#define ICMPV6_NI_REPLY 140
#endif

struct nf_ct_icmpv6
{
	/* Optimization: when number in == number out, forget immediately. */
	atomic_t count;
};

#endif /* _NF_CONNTRACK_ICMPV6_H */