diff options
author | Lawrence Teo <lteo@cvs.openbsd.org> | 2013-04-02 03:34:32 +0000 |
---|---|---|
committer | Lawrence Teo <lteo@cvs.openbsd.org> | 2013-04-02 03:34:32 +0000 |
commit | 2f1fb9643a516bad01df1d1325ad30d3563062ea (patch) | |
tree | 9f69419248d89b6aed3882b3bc0a8394834b42e3 /sys | |
parent | d83af8a07b070651fb49feafd52644208f298ffd (diff) |
Remove "/IPv4" from the comments of the M_{TCP,UDP}_CSUM_IN_* flags,
since they are also used for TCP or UDP checksums over IPv6 (originally
pointed out by naddy@ when I was updating the mbuf(9) man page).
ok bluhm claudio
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/mbuf.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h index c6a66593846..0ac1a5e59d6 100644 --- a/sys/sys/mbuf.h +++ b/sys/sys/mbuf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mbuf.h,v 1.162 2013/03/29 13:16:14 bluhm Exp $ */ +/* $OpenBSD: mbuf.h,v 1.163 2013/04/02 03:34:31 lteo Exp $ */ /* $NetBSD: mbuf.h,v 1.19 1996/02/09 18:25:14 christos Exp $ */ /* @@ -188,10 +188,10 @@ struct mbuf { #define M_UDP_CSUM_OUT 0x0004 /* UDP checksum needed */ #define M_IPV4_CSUM_IN_OK 0x0008 /* IPv4 checksum verified */ #define M_IPV4_CSUM_IN_BAD 0x0010 /* IPv4 checksum bad */ -#define M_TCP_CSUM_IN_OK 0x0020 /* TCP/IPv4 checksum verified */ -#define M_TCP_CSUM_IN_BAD 0x0040 /* TCP/IPv4 checksum bad */ -#define M_UDP_CSUM_IN_OK 0x0080 /* UDP/IPv4 checksum verified */ -#define M_UDP_CSUM_IN_BAD 0x0100 /* UDP/IPv4 checksum bad */ +#define M_TCP_CSUM_IN_OK 0x0020 /* TCP checksum verified */ +#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 */ |