|
|
Message-ID: <20161009170230.GI28065@port70.net>
Date: Sun, 9 Oct 2016 19:02:30 +0200
From: Szabolcs Nagy <nsz@...t70.net>
To: musl@...ts.openwall.com
Subject: [PATCH 7/7] update icmphdr struct following linux v4.8
add union field that is used in the kernel for SIT/GRE tunneling ICMPv4
messages. see linux commit 20e1954fe238dbe5f8d3a979e593fe352bd703cf
---
include/netinet/ip_icmp.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/netinet/ip_icmp.h b/include/netinet/ip_icmp.h
index 2f4a86d..b9e0df8 100644
--- a/include/netinet/ip_icmp.h
+++ b/include/netinet/ip_icmp.h
@@ -23,6 +23,7 @@ struct icmphdr {
uint16_t __unused;
uint16_t mtu;
} frag;
+ uint8_t reserved[4];
} un;
};
--
2.10.0
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.