diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2005-04-20 19:59:30 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2005-04-20 19:59:30 +0000 |
commit | 93a672b926f8391fac5fdb8b5b52c02a4185a888 (patch) | |
tree | c03bfa2052f06e2a671ea09a111d79f9d7852030 /sys | |
parent | 472569caed823134f3cdf4b7b1f19c50910c3879 (diff) |
add mbuf tag for the data link type
ok canacar@ damien@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/mbuf.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h index d32c67d6b72..96ae046fed9 100644 --- a/sys/sys/mbuf.h +++ b/sys/sys/mbuf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mbuf.h,v 1.79 2005/01/18 23:26:51 mpf Exp $ */ +/* $OpenBSD: mbuf.h,v 1.80 2005/04/20 19:59:29 reyk Exp $ */ /* $NetBSD: mbuf.h,v 1.19 1996/02/09 18:25:14 christos Exp $ */ /* @@ -595,6 +595,7 @@ struct m_tag *m_tag_next(struct mbuf *, struct m_tag *); #define PACKET_TAG_PF_QID 14 /* PF queue id */ #define PACKET_TAG_PF_TAG 15 /* PF tags */ #define PACKET_TAG_PF_TRANSLATE_LOCALHOST 16 /* translated to localhost */ +#define PACKET_TAG_DLT 17 /* data link layer type */ #ifdef MBTYPES int mbtypes[] = { /* XXX */ |