~ubuntu-branches/debian/experimental/linux-tools/experimental

« back to all changes in this revision

Viewing changes to include/net/icmp.h

  • Committer: Package Import Robot
  • Author(s): Ben Hutchings
  • Date: 2014-02-02 16:57:49 UTC
  • mfrom: (1.1.10) (0.1.21 sid)
  • Revision ID: package-import@ubuntu.com-20140202165749-tw94o9t1t0a8txk6
Tags: 3.13-1~exp2
Merge changes from sid up to 3.12.6-3

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
struct sk_buff;
40
40
struct net;
41
41
 
42
 
extern void     icmp_send(struct sk_buff *skb_in,  int type, int code, __be32 info);
43
 
extern int      icmp_rcv(struct sk_buff *skb);
44
 
extern void     icmp_err(struct sk_buff *, u32 info);
45
 
extern int      icmp_init(void);
46
 
extern void     icmp_out_count(struct net *net, unsigned char type);
 
42
void icmp_send(struct sk_buff *skb_in, int type, int code, __be32 info);
 
43
int icmp_rcv(struct sk_buff *skb);
 
44
void icmp_err(struct sk_buff *skb, u32 info);
 
45
int icmp_init(void);
 
46
void icmp_out_count(struct net *net, unsigned char type);
47
47
 
48
48
#endif  /* _ICMP_H */