diff options
author | 2003-05-13 17:33:16 +0000 | |
---|---|---|
committer | 2003-05-13 17:33:16 +0000 | |
commit | 0ca4f642129c8ece9087f849000763815cdc1ac5 (patch) | |
tree | dec94db834ba201478c40c286460d16ca65e85ba | |
parent | Make the "slot" and "offset" locators for sbus drivers optional in (diff) | |
download | wireguard-openbsd-0ca4f642129c8ece9087f849000763815cdc1ac5.tar.xz wireguard-openbsd-0ca4f642129c8ece9087f849000763815cdc1ac5.zip |
add PACKET_TAG_PF_TAG, to be used by PF
-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 e51d0e78d39..846cd2e7c6f 100644 --- a/sys/sys/mbuf.h +++ b/sys/sys/mbuf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mbuf.h,v 1.68 2003/02/12 14:41:08 jason Exp $ */ +/* $OpenBSD: mbuf.h,v 1.69 2003/05/13 17:33:16 henning Exp $ */ /* $NetBSD: mbuf.h,v 1.19 1996/02/09 18:25:14 christos Exp $ */ /* @@ -598,6 +598,7 @@ struct m_tag *m_tag_next(struct mbuf *, struct m_tag *); #define PACKET_TAG_PF_ROUTED 12 /* PF routed, no route loops */ #define PACKET_TAG_PF_FRAGCACHE 13 /* PF fragment cached */ #define PACKET_TAG_PF_QID 14 /* PF queue id */ +#define PACKET_TAG_PF_TAG 15 /* PF tags */ #ifdef MBTYPES int mbtypes[] = { /* XXX */ |