Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b1dd39ac authored by Al Viro's avatar Al Viro Committed by David S. Miller
Browse files

[IPV4]: ICMP header annotations

parent 734ab87f
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -68,16 +68,16 @@
struct icmphdr {
  __u8		type;
  __u8		code;
  __u16		checksum;
  __be16	checksum;
  union {
	struct {
		__u16	id;
		__u16	sequence;
		__be16	id;
		__be16	sequence;
	} echo;
	__u32	gateway;
	__be32	gateway;
	struct {
		__u16	__unused;
		__u16	mtu;
		__be16	__unused;
		__be16	mtu;
	} frag;
  } un;
};