1 /* IPv4-specific defines for netfilter.
2 * (C)1998 Rusty Russell -- This code is GPL.
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.
19 int ip_route_me_harder(struct net
*net
, struct sock
*sk
, struct sk_buff
*skb
, unsigned addr_type
);
21 struct nf_queue_entry
;
24 __sum16
nf_ip_checksum(struct sk_buff
*skb
, unsigned int hook
,
25 unsigned int dataoff
, u_int8_t protocol
);
26 int nf_ip_route(struct net
*net
, struct dst_entry
**dst
, struct flowi
*fl
,
29 static inline __sum16
nf_ip_checksum(struct sk_buff
*skb
, unsigned int hook
,
30 unsigned int dataoff
, u_int8_t protocol
)
34 static inline int nf_ip_route(struct net
*net
, struct dst_entry
**dst
,
35 struct flowi
*fl
, bool strict
)
39 #endif /* CONFIG_INET */
41 #endif /*__LINUX_IP_NETFILTER_H*/