summaryrefslogtreecommitdiff
path: root/include/linux/netfilter_ipv4.h
blob: c7deb78bac884a8413b75b509f30c9959334449f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* IPv4-specific defines for netfilter. 
 * (C)1998 Rusty Russell -- This code is GPL.
 */
#ifndef __LINUX_IP_NETFILTER_H
#define __LINUX_IP_NETFILTER_H

#include <uapi/linux/netfilter_ipv4.h>

int ip_route_me_harder(struct net *net, struct sk_buff *skb, unsigned addr_type);

#ifdef CONFIG_INET
__sum16 nf_ip_checksum(struct sk_buff *skb, unsigned int hook,
		       unsigned int dataoff, u_int8_t protocol);
#else
static inline __sum16 nf_ip_checksum(struct sk_buff *skb, unsigned int hook,
				     unsigned int dataoff, u_int8_t protocol)
{
	return 0;
}
#endif /* CONFIG_INET */

#endif /*__LINUX_IP_NETFILTER_H*/