aboutsummaryrefslogtreecommitdiff
path: root/include/linux/netfilter_ipv4.h
diff options
context:
space:
mode:
authorSimon Horman <horms@verge.net.au>2006-10-02 16:11:13 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2006-10-04 00:30:54 -0700
commitb4c4ed175ff0ee816df48571cfa9b73f521964b6 (patch)
tree11e077983cb640f93c54edf25ce1f1a1a6040562 /include/linux/netfilter_ipv4.h
parentf1da70632fa0875f80fc60991a010c31f40983ff (diff)
[NETFILTER]: add type parameter to ip_route_me_harder
By adding a type parameter to ip_route_me_harder() the expensive call to inet_addr_type() can be avoided in some cases. A followup patch where ip_route_me_harder() is called from within ip_vs_out() is one such example. Signed-off-By: Simon Horman <horms@verge.net.au> Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netfilter_ipv4.h')
-rw-r--r--include/linux/netfilter_ipv4.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netfilter_ipv4.h b/include/linux/netfilter_ipv4.h
index ce02c984f3ba..5b63a231a76b 100644
--- a/include/linux/netfilter_ipv4.h
+++ b/include/linux/netfilter_ipv4.h
@@ -77,7 +77,7 @@ enum nf_ip_hook_priorities {
#define SO_ORIGINAL_DST 80
#ifdef __KERNEL__
-extern int ip_route_me_harder(struct sk_buff **pskb);
+extern int ip_route_me_harder(struct sk_buff **pskb, unsigned addr_type);
extern int ip_xfrm_me_harder(struct sk_buff **pskb);
extern unsigned int nf_ip_checksum(struct sk_buff *skb, unsigned int hook,
unsigned int dataoff, u_int8_t protocol);