drm: Fix shifts of EDID vsync offset/width fields.
[linux-2.6-block.git] / include / linux / netfilter_ipv6.h
CommitLineData
1da177e4
LT
1#ifndef __LINUX_IP6_NETFILTER_H
2#define __LINUX_IP6_NETFILTER_H
3
4/* IPv6-specific defines for netfilter.
5 * (C)1998 Rusty Russell -- This code is GPL.
6 * (C)1999 David Jeffery
7 * this header was blatantly ripped from netfilter_ipv4.h
8 * it's amazing what adding a bunch of 6s can do =8^)
9 */
10
11#include <linux/netfilter.h>
12
6869c4d8
HW
13/* only for userspace compatibility */
14#ifndef __KERNEL__
1da177e4
LT
15/* IP Cache bits. */
16/* Src IP address. */
17#define NFC_IP6_SRC 0x0001
18/* Dest IP address. */
19#define NFC_IP6_DST 0x0002
20/* Input device. */
21#define NFC_IP6_IF_IN 0x0004
22/* Output device. */
23#define NFC_IP6_IF_OUT 0x0008
24/* TOS. */
25#define NFC_IP6_TOS 0x0010
26/* Protocol. */
27#define NFC_IP6_PROTO 0x0020
28/* IP options. */
29#define NFC_IP6_OPTIONS 0x0040
30/* Frag & flags. */
31#define NFC_IP6_FRAG 0x0080
32
33
34/* Per-protocol information: only matters if proto match. */
35/* TCP flags. */
36#define NFC_IP6_TCPFLAGS 0x0100
37/* Source port. */
38#define NFC_IP6_SRC_PT 0x0200
39/* Dest port. */
40#define NFC_IP6_DST_PT 0x0400
41/* Something else about the proto */
42#define NFC_IP6_PROTO_UNKNOWN 0x2000
1da177e4
LT
43
44/* IP6 Hooks */
45/* After promisc drops, checksum checks. */
46#define NF_IP6_PRE_ROUTING 0
47/* If the packet is destined for this box. */
48#define NF_IP6_LOCAL_IN 1
49/* If the packet is destined for another interface. */
50#define NF_IP6_FORWARD 2
51/* Packets coming from a local process. */
52#define NF_IP6_LOCAL_OUT 3
53/* Packets about to hit the wire. */
54#define NF_IP6_POST_ROUTING 4
55#define NF_IP6_NUMHOOKS 5
6e23ae2a 56#endif /* ! __KERNEL__ */
1da177e4
LT
57
58
59enum nf_ip6_hook_priorities {
60 NF_IP6_PRI_FIRST = INT_MIN,
9fb9cbb1 61 NF_IP6_PRI_CONNTRACK_DEFRAG = -400,
1da177e4
LT
62 NF_IP6_PRI_SELINUX_FIRST = -225,
63 NF_IP6_PRI_CONNTRACK = -200,
1da177e4
LT
64 NF_IP6_PRI_MANGLE = -150,
65 NF_IP6_PRI_NAT_DST = -100,
1da177e4 66 NF_IP6_PRI_FILTER = 0,
17e6e59f 67 NF_IP6_PRI_SECURITY = 50,
1da177e4
LT
68 NF_IP6_PRI_NAT_SRC = 100,
69 NF_IP6_PRI_SELINUX_LAST = 225,
70 NF_IP6_PRI_LAST = INT_MAX,
71};
72
cdf060a5
AB
73#ifdef __KERNEL__
74
bb94aa16 75#ifdef CONFIG_NETFILTER
9123de2c 76extern int ip6_route_me_harder(struct sk_buff *skb);
b51655b9 77extern __sum16 nf_ip6_checksum(struct sk_buff *skb, unsigned int hook,
422c346f
PM
78 unsigned int dataoff, u_int8_t protocol);
79
20380731
ACM
80extern int ipv6_netfilter_init(void);
81extern void ipv6_netfilter_fini(void);
bb94aa16
PM
82#else /* CONFIG_NETFILTER */
83static inline int ipv6_netfilter_init(void) { return 0; }
84static inline void ipv6_netfilter_fini(void) { return; }
85#endif /* CONFIG_NETFILTER */
2cc7d573 86
cdf060a5
AB
87#endif /* __KERNEL__ */
88
1da177e4 89#endif /*__LINUX_IP6_NETFILTER_H*/