diff options
author | Lawrence Teo <lteo@cvs.openbsd.org> | 2014-01-11 04:46:16 +0000 |
---|---|---|
committer | Lawrence Teo <lteo@cvs.openbsd.org> | 2014-01-11 04:46:16 +0000 |
commit | d76f851a8f0d689ccd2e8e0c1b3b19d70ea933bd (patch) | |
tree | 02193a9acdd05f229ee2969e8956a7517ce6572e /sys | |
parent | 9167d0e2683270ab260f08f670ead704710c5344 (diff) |
Sync the comments for the M_ICMP_CSUM_* flags with their descriptions in
the mbuf(9) man page.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/mbuf.h | 8 |
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 \ |