Module Name: src Committed By: riastradh Date: Fri Dec 6 18:35:52 UTC 2024
Modified Files: src/sys/netinet: icmp6.h Log Message: netinet/icmp6.h: Need sys/types.h and netinet/in.h. - sys/types.h for u_intN_t - netinet/in.h for struct in6_addr To generate a diff of this commit: cvs rdiff -u -r1.59 -r1.60 src/sys/netinet/icmp6.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/netinet/icmp6.h diff -u src/sys/netinet/icmp6.h:1.59 src/sys/netinet/icmp6.h:1.60 --- src/sys/netinet/icmp6.h:1.59 Mon Aug 29 09:14:02 2022 +++ src/sys/netinet/icmp6.h Fri Dec 6 18:35:52 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: icmp6.h,v 1.59 2022/08/29 09:14:02 knakahara Exp $ */ +/* $NetBSD: icmp6.h,v 1.60 2024/12/06 18:35:52 riastradh Exp $ */ /* $KAME: icmp6.h,v 1.84 2003/04/23 10:26:51 itojun Exp $ */ @@ -65,6 +65,10 @@ #ifndef _NETINET_ICMP6_H_ #define _NETINET_ICMP6_H_ +#include <sys/types.h> + +#include <netinet/in.h> + #define ICMPV6_PLD_MAXLEN 1232 /* IPV6_MMTU - sizeof(struct ip6_hdr) - sizeof(struct icmp6_hdr) */