From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/10613 Path: news.gmane.org!.POSTED!not-for-mail From: Szabolcs Nagy Newsgroups: gmane.linux.lib.musl.general Subject: [PATCH 7/7] update icmphdr struct following linux v4.8 Date: Sun, 9 Oct 2016 19:02:30 +0200 Message-ID: <20161009170230.GI28065@port70.net> References: <20161009165739.GB28065@port70.net> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: blaine.gmane.org 1476032589 21812 195.159.176.226 (9 Oct 2016 17:03:09 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sun, 9 Oct 2016 17:03:09 +0000 (UTC) User-Agent: Mutt/1.6.0 (2016-04-01) To: musl@lists.openwall.com Original-X-From: musl-return-10626-gllmg-musl=m.gmane.org@lists.openwall.com Sun Oct 09 19:03:06 2016 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by blaine.gmane.org with smtp (Exim 4.84_2) (envelope-from ) id 1btHUo-0002PK-Qd for gllmg-musl@m.gmane.org; Sun, 09 Oct 2016 19:02:42 +0200 Original-Received: (qmail 18249 invoked by uid 550); 9 Oct 2016 17:02:43 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Original-Received: (qmail 18222 invoked from network); 9 Oct 2016 17:02:42 -0000 Mail-Followup-To: musl@lists.openwall.com Content-Disposition: inline In-Reply-To: <20161009165739.GB28065@port70.net> Xref: news.gmane.org gmane.linux.lib.musl.general:10613 Archived-At: 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