diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2007-08-10 14:53:26 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2007-08-10 14:53:26 +0000 |
commit | f7b8b2c55e26cfea5d4626667026ebd5ac90a80b (patch) | |
tree | 6cc9ebd056a3a3dce50dfd52fed31090555d45e1 | |
parent | 75b3f40c1529494e6e2c0cf03d6a0f0d5f35f0b4 (diff) |
sync structs with reality
From: tbert <bret.lambert@gmail.com>
-rw-r--r-- | share/man/man9/mbuf.9 | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/share/man/man9/mbuf.9 b/share/man/man9/mbuf.9 index bab928983f8..08fdecdc4b2 100644 --- a/share/man/man9/mbuf.9 +++ b/share/man/man9/mbuf.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mbuf.9,v 1.26 2007/05/31 19:20:00 jmc Exp $ +.\" $OpenBSD: mbuf.9,v 1.27 2007/08/10 14:53:25 henning 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: May 31 2007 $ +.Dd $Mdocdate: August 10 2007 $ .Dt MBUF 9 .Os .Sh NAME @@ -117,6 +117,16 @@ struct pkthdr { SLIST_HEAD(packet_tags, m_tag) tags; int len; int csum_flags; + struct pkthdr_pf; +}; + +struct pkthdr_pf { + void *hdr; + u_int rtableid; + u_int32_t qid; + u_int16_t tag; + u_int8_t flags; + u_int8_t routed; }; struct m_ext { |