1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-14 14:55:41 +00:00

o GC MT_FTABLE removed in rev. 1.192 mbuf.h.

o Correct MT_HEADER define.
This commit is contained in:
Maxim Konovalov 2006-07-24 07:32:23 +00:00
parent b0ed6228b3
commit 1cb58a0783
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=160614

View File

@ -24,7 +24,7 @@
.\"
.\" $FreeBSD$
.\"
.Dd March 15, 2006
.Dd July 24, 2006
.Dt MBUF 9
.Os
.\"
@ -229,9 +229,8 @@ types are defined as follows:
.Bd -literal
/* mbuf types */
#define MT_DATA 1 /* dynamic (data) allocation */
#define MT_HEADER 2 /* packet header */
#define MT_HEADER MT_DATA /* packet header */
#define MT_SONAME 8 /* socket name */
#define MT_FTABLE 11 /* fragment reassembly header */
#define MT_CONTROL 14 /* extra-data protocol message */
#define MT_OOBDATA 15 /* expedited data */
.Ed