summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlteo <lteo@openbsd.org>2014-01-11 04:46:15 +0000
committerlteo <lteo@openbsd.org>2014-01-11 04:46:15 +0000
commitab4b2499c1f9ce1c7ff89b3f3d2141f17cf20da5 (patch)
treeef5add98fae059702f392c36b32bfc8dc91f275d
parentCreate cleaner & less noisy makefiles, now that we've been using (diff)
downloadwireguard-openbsd-ab4b2499c1f9ce1c7ff89b3f3d2141f17cf20da5.tar.xz
wireguard-openbsd-ab4b2499c1f9ce1c7ff89b3f3d2141f17cf20da5.zip
Sync the comments for the M_ICMP_CSUM_* flags with their descriptions in
the mbuf(9) man page.
-rw-r--r--sys/sys/mbuf.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h
index 48fd1832e14..0239d2d4fc5 100644
--- a/sys/sys/mbuf.h
+++ b/sys/sys/mbuf.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: mbuf.h,v 1.170 2014/01/10 00:47:17 bluhm Exp $ */
+/* $OpenBSD: mbuf.h,v 1.171 2014/01/11 04:46:15 lteo Exp $ */
/* $NetBSD: mbuf.h,v 1.19 1996/02/09 18:25:14 christos Exp $ */
/*
@@ -208,9 +208,9 @@ struct mbuf {
#define M_TCP_CSUM_IN_BAD 0x0040 /* TCP checksum bad */
#define M_UDP_CSUM_IN_OK 0x0080 /* UDP checksum verified */
#define M_UDP_CSUM_IN_BAD 0x0100 /* UDP checksum bad */
-#define M_ICMP_CSUM_OUT 0x0200 /* ICMP checksum needed */
-#define M_ICMP_CSUM_IN_OK 0x0400 /* ICMP checksum verified */
-#define M_ICMP_CSUM_IN_BAD 0x0800 /* ICMP checksum bad */
+#define M_ICMP_CSUM_OUT 0x0200 /* ICMP/ICMPv6 checksum needed */
+#define M_ICMP_CSUM_IN_OK 0x0400 /* ICMP/ICMPv6 checksum verified */
+#define M_ICMP_CSUM_IN_BAD 0x0800 /* ICMP/ICMPv6 checksum bad */
#ifdef _KERNEL
#define MCS_BITS \