diff options
author | Lawrence Teo <lteo@cvs.openbsd.org> | 2013-10-25 18:42:37 +0000 |
---|---|---|
committer | Lawrence Teo <lteo@cvs.openbsd.org> | 2013-10-25 18:42:37 +0000 |
commit | 5eec9bb66b1c00f80fd4a94af33885eb2bc5762b (patch) | |
tree | 81fc4d2c8beb01ba161cd0ae501873ac5c196dd6 /share | |
parent | bb06724b2414d97347ebf92bab492db33bdaeea7 (diff) |
Now that the M_ICMP_CSUM_* flags are actually used in the kernel by PF,
document them in the mbuf(9) man page.
OK henning@ jmc@
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/mbuf.9 | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/share/man/man9/mbuf.9 b/share/man/man9/mbuf.9 index 7df9da2f4ff..b6adf115507 100644 --- a/share/man/man9/mbuf.9 +++ b/share/man/man9/mbuf.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mbuf.9,v 1.65 2013/08/21 05:21:42 dlg Exp $ +.\" $OpenBSD: mbuf.9,v 1.66 2013/10/25 18:42:36 lteo Exp $ .\" .\" Copyright (c) 2001 Jean-Jacques Bernard-Gundol <jjbg@openbsd.org> .\" All rights reserved. @@ -25,7 +25,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: August 21 2013 $ +.Dd $Mdocdate: October 25 2013 $ .Dt MBUF 9 .Os .Sh NAME @@ -313,6 +313,8 @@ IPv4 checksum needed. TCP checksum needed. .It Dv M_UDP_CSUM_OUT UDP checksum needed. +.It Dv M_ICMP_CSUM_OUT +ICMP/ICMPv6 checksum needed. .It Dv M_IPV4_CSUM_IN_OK IPv4 checksum verified. .It Dv M_IPV4_CSUM_IN_BAD @@ -325,6 +327,10 @@ TCP checksum bad. UDP checksum verified. .It Dv M_UDP_CSUM_IN_BAD UDP checksum bad. +.It Dv M_ICMP_CSUM_IN_OK +ICMP/ICMPv6 checksum verified. +.It Dv M_ICMP_CSUM_IN_BAD +ICMP/ICMPv6 checksum bad. .El .Pp When only M_EXT flag is set, an external storage buffer is being used to |