From f434362a8a24554a984dad6fd773a2eabf85206b Mon Sep 17 00:00:00 2001 From: Yaroslav Tykhiy Date: Sun, 18 Jan 2004 21:23:30 +0000 Subject: [PATCH] Update the list of possible mbuf flags from . --- share/man/man9/mbuf.9 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/share/man/man9/mbuf.9 b/share/man/man9/mbuf.9 index 48ee8ac5272..a10cb214dc6 100644 --- a/share/man/man9/mbuf.9 +++ b/share/man/man9/mbuf.9 @@ -194,8 +194,10 @@ flag bits are defined as follows: #define M_PROTO3 0x0040 /* protocol-specific */ #define M_PROTO4 0x0080 /* protocol-specific */ #define M_PROTO5 0x0100 /* protocol-specific */ +#define M_PROTO6 0x4000 /* protocol-specific (avoid M_BCAST conflict) */ +#define M_FREELIST 0x8000 /* mbuf is on the free list */ -/* mbuf pkthdr flags, also in m_flags */ +/* mbuf pkthdr flags (also stored in m_flags) */ #define M_BCAST 0x0200 /* send/received as link-level broadcast */ #define M_MCAST 0x0400 /* send/received as link-level multicast */ #define M_FRAG 0x0800 /* packet is fragment of larger packet */ -- 2.45.2