ip.h (33224b16ffccb49cf798317670389e0bfba0024c) | ip.h (ede2059dbaf9c6557a49d466c8c7778343b208ff) |
---|---|
1/* 2 * INET An implementation of the TCP/IP protocol suite for the LINUX 3 * operating system. INET is implemented using the BSD Socket 4 * interface as the means of communication with the user level. 5 * 6 * Definitions for the IP module. 7 * 8 * Version: @(#)ip.h 1.0.2 05/07/93 --- 93 unchanged lines hidden (view full) --- 102 103int ip_build_and_send_pkt(struct sk_buff *skb, const struct sock *sk, 104 __be32 saddr, __be32 daddr, 105 struct ip_options_rcu *opt); 106int ip_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, 107 struct net_device *orig_dev); 108int ip_local_deliver(struct sk_buff *skb); 109int ip_mr_input(struct sk_buff *skb); | 1/* 2 * INET An implementation of the TCP/IP protocol suite for the LINUX 3 * operating system. INET is implemented using the BSD Socket 4 * interface as the means of communication with the user level. 5 * 6 * Definitions for the IP module. 7 * 8 * Version: @(#)ip.h 1.0.2 05/07/93 --- 93 unchanged lines hidden (view full) --- 102 103int ip_build_and_send_pkt(struct sk_buff *skb, const struct sock *sk, 104 __be32 saddr, __be32 daddr, 105 struct ip_options_rcu *opt); 106int ip_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, 107 struct net_device *orig_dev); 108int ip_local_deliver(struct sk_buff *skb); 109int ip_mr_input(struct sk_buff *skb); |
110int ip_output(struct sock *sk, struct sk_buff *skb); 111int ip_mc_output(struct sock *sk, struct sk_buff *skb); | 110int ip_output(struct net *net, struct sock *sk, struct sk_buff *skb); 111int ip_mc_output(struct net *net, struct sock *sk, struct sk_buff *skb); |
112int ip_do_fragment(struct net *net, struct sock *sk, struct sk_buff *skb, 113 int (*output)(struct net *, struct sock *, struct sk_buff *)); 114void ip_send_check(struct iphdr *ip); 115int __ip_local_out(struct net *net, struct sock *sk, struct sk_buff *skb); 116int ip_local_out(struct net *net, struct sock *sk, struct sk_buff *skb); 117 118int ip_queue_xmit(struct sock *sk, struct sk_buff *skb, struct flowi *fl); 119void ip_init(void); --- 470 unchanged lines hidden --- | 112int ip_do_fragment(struct net *net, struct sock *sk, struct sk_buff *skb, 113 int (*output)(struct net *, struct sock *, struct sk_buff *)); 114void ip_send_check(struct iphdr *ip); 115int __ip_local_out(struct net *net, struct sock *sk, struct sk_buff *skb); 116int ip_local_out(struct net *net, struct sock *sk, struct sk_buff *skb); 117 118int ip_queue_xmit(struct sock *sk, struct sk_buff *skb, struct flowi *fl); 119void ip_init(void); --- 470 unchanged lines hidden --- |