Contributors: 14
	  
        
          | Author | 
          Tokens | 
          Token Proportion | 
          Commits | 
          Commit Proportion | 
        
	  
	  
        
        
          | Patrick McHardy | 
          61 | 
          37.42% | 
          4 | 
          20.00% | 
        
        
          | Pablo Neira Ayuso | 
          28 | 
          17.18% | 
          3 | 
          15.00% | 
        
        
          | Eric W. Biedermann | 
          15 | 
          9.20% | 
          1 | 
          5.00% | 
        
        
          | Linus Torvalds | 
          12 | 
          7.36% | 
          1 | 
          5.00% | 
        
        
          | Harald Welte | 
          12 | 
          7.36% | 
          1 | 
          5.00% | 
        
        
          | Linus Torvalds (pre-git) | 
          10 | 
          6.13% | 
          1 | 
          5.00% | 
        
        
          | Florian Westphal | 
          6 | 
          3.68% | 
          1 | 
          5.00% | 
        
        
          | Jason A. Donenfeld | 
          5 | 
          3.07% | 
          1 | 
          5.00% | 
        
        
          | Al Viro | 
          4 | 
          2.45% | 
          2 | 
          10.00% | 
        
        
          | Simon Horman | 
          3 | 
          1.84% | 
          1 | 
          5.00% | 
        
        
          | Eric Leblond | 
          3 | 
          1.84% | 
          1 | 
          5.00% | 
        
        
          | David S. Miller | 
          2 | 
          1.23% | 
          1 | 
          5.00% | 
        
        
          | David Howells | 
          1 | 
          0.61% | 
          1 | 
          5.00% | 
        
        
          | Herbert Xu | 
          1 | 
          0.61% | 
          1 | 
          5.00% | 
        
	  
	  
        
          | Total | 
          163 | 
           | 
          20 | 
           | 
	    
	  
    
 
/* 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>
/* Extra routing may needed on local out, as the QUEUE target never returns
 * control to the table.
 */
struct ip_rt_info {
	__be32 daddr;
	__be32 saddr;
	u_int8_t tos;
	u_int32_t mark;
};
int ip_route_me_harder(struct net *net, struct sock *sk, struct sk_buff *skb, unsigned addr_type);
struct nf_queue_entry;
#ifdef CONFIG_INET
__sum16 nf_ip_checksum(struct sk_buff *skb, unsigned int hook,
		       unsigned int dataoff, u_int8_t protocol);
int nf_ip_route(struct net *net, struct dst_entry **dst, struct flowi *fl,
		bool strict);
#else
static inline __sum16 nf_ip_checksum(struct sk_buff *skb, unsigned int hook,
				     unsigned int dataoff, u_int8_t protocol)
{
	return 0;
}
static inline int nf_ip_route(struct net *net, struct dst_entry **dst,
			      struct flowi *fl, bool strict)
{
	return -EOPNOTSUPP;
}
#endif /* CONFIG_INET */
#endif /*__LINUX_IP_NETFILTER_H*/