diff options
author | 2001-05-31 23:35:56 +0000 | |
---|---|---|
committer | 2001-05-31 23:35:56 +0000 | |
commit | 264e13612925600002a560de889016ba4f7b5873 (patch) | |
tree | afec1f2bc9d1fb432c4d678fa6d17420d85cf8a3 | |
parent | Fix another case of CHDIR("..") pointed out by Bruce Evans (diff) | |
download | wireguard-openbsd-264e13612925600002a560de889016ba4f7b5873.tar.xz wireguard-openbsd-264e13612925600002a560de889016ba4f7b5873.zip |
Add another tag for IPsec signalling.
-rw-r--r-- | sys/sys/mbuf.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h index e250f6179f7..828c5ee4eaa 100644 --- a/sys/sys/mbuf.h +++ b/sys/sys/mbuf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mbuf.h,v 1.36 2001/05/27 04:15:51 angelos Exp $ */ +/* $OpenBSD: mbuf.h,v 1.37 2001/05/31 23:35:56 angelos Exp $ */ /* $NetBSD: mbuf.h,v 1.19 1996/02/09 18:25:14 christos Exp $ */ /* @@ -577,9 +577,10 @@ struct m_tag *m_tag_next __P((struct mbuf *, struct m_tag *)); #define PACKET_TAG_IPSEC_OUT_DONE 2 #define PACKET_TAG_IPSEC_IN_CRYPTO_DONE 3 #define PACKET_TAG_IPSEC_OUT_CRYPTO_NEEDED 4 -#define PACKET_TAG_BRIDGE 5 -#define PACKET_TAG_GIF 6 -#define PACKET_TAG_GRE 7 +#define PACKET_TAG_IPSEC_IN_COULD_DO_CRYPTO 5 +#define PACKET_TAG_BRIDGE 6 +#define PACKET_TAG_GIF 7 +#define PACKET_TAG_GRE 8 #ifdef MBTYPES int mbtypes[] = { /* XXX */ |