Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / include / linux / netfilter_ipv4.h
blobb31dabfdb453e3d178f68ee8dbaf57af7d708c58
1 /* IPv4-specific defines for netfilter.
2 * (C)1998 Rusty Russell -- This code is GPL.
3 */
4 #ifndef __LINUX_IP_NETFILTER_H
5 #define __LINUX_IP_NETFILTER_H
7 #include <uapi/linux/netfilter_ipv4.h>
9 /* Extra routing may needed on local out, as the QUEUE target never returns
10 * control to the table.
12 struct ip_rt_info {
13 __be32 daddr;
14 __be32 saddr;
15 u_int8_t tos;
16 u_int32_t mark;
19 int ip_route_me_harder(struct net *net, struct sk_buff *skb, unsigned addr_type);
21 struct nf_queue_entry;
23 #ifdef CONFIG_INET
24 __sum16 nf_ip_checksum(struct sk_buff *skb, unsigned int hook,
25 unsigned int dataoff, u_int8_t protocol);
26 __sum16 nf_ip_checksum_partial(struct sk_buff *skb, unsigned int hook,
27 unsigned int dataoff, unsigned int len,
28 u_int8_t protocol);
29 int nf_ip_route(struct net *net, struct dst_entry **dst, struct flowi *fl,
30 bool strict);
31 int nf_ip_reroute(struct sk_buff *skb, const struct nf_queue_entry *entry);
32 #else
33 static inline __sum16 nf_ip_checksum(struct sk_buff *skb, unsigned int hook,
34 unsigned int dataoff, u_int8_t protocol)
36 return 0;
38 static inline __sum16 nf_ip_checksum_partial(struct sk_buff *skb,
39 unsigned int hook,
40 unsigned int dataoff,
41 unsigned int len,
42 u_int8_t protocol)
44 return 0;
46 static inline int nf_ip_route(struct net *net, struct dst_entry **dst,
47 struct flowi *fl, bool strict)
49 return -EOPNOTSUPP;
51 static inline int nf_ip_reroute(struct sk_buff *skb,
52 const struct nf_queue_entry *entry)
54 return -EOPNOTSUPP;
56 #endif /* CONFIG_INET */
58 #endif /*__LINUX_IP_NETFILTER_H*/