diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-07-02 01:34:48 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-07-02 01:34:48 +0000 |
commit | bdc037b07d7eb7fe36b08a16b2494f660b4c2f3f (patch) | |
tree | da5e0f6beaf26004995150884e0a9f042c2e9747 /sys | |
parent | bfd42c7c671bdd5e6ebcf71c5f0665407ac1586d (diff) |
grr, indent
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/mbuf.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h index c7638afa64b..196b8c9d552 100644 --- a/sys/sys/mbuf.h +++ b/sys/sys/mbuf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mbuf.h,v 1.49 2001/07/01 23:04:44 dhartmei Exp $ */ +/* $OpenBSD: mbuf.h,v 1.50 2001/07/02 01:34:47 deraadt Exp $ */ /* $NetBSD: mbuf.h,v 1.19 1996/02/09 18:25:14 christos Exp $ */ /* @@ -584,17 +584,17 @@ struct m_tag *m_tag_first __P((struct mbuf *)); struct m_tag *m_tag_next __P((struct mbuf *, struct m_tag *)); /* Packet tag types */ -#define PACKET_TAG_NONE 0 /* Nadda */ -#define PACKET_TAG_IPSEC_IN_DONE 1 /* IPsec applied, in */ -#define PACKET_TAG_IPSEC_OUT_DONE 2 /* IPsec applied, out */ +#define PACKET_TAG_NONE 0 /* Nadda */ +#define PACKET_TAG_IPSEC_IN_DONE 1 /* IPsec applied, in */ +#define PACKET_TAG_IPSEC_OUT_DONE 2 /* IPsec applied, out */ #define PACKET_TAG_IPSEC_IN_CRYPTO_DONE 3 /* NIC IPsec crypto done */ #define PACKET_TAG_IPSEC_OUT_CRYPTO_NEEDED 4 /* NIC IPsec crypto req'ed */ #define PACKET_TAG_IPSEC_IN_COULD_DO_CRYPTO 5 /* NIC notifies IPsec */ -#define PACKET_TAG_IPSEC_PENDING_TDB 6 /* Reminder to do IPsec */ +#define PACKET_TAG_IPSEC_PENDING_TDB 6 /* Reminder to do IPsec */ #define PACKET_TAG_BRIDGE 7 /* Bridge processing done */ #define PACKET_TAG_GIF 8 /* GIF processing done */ #define PACKET_TAG_GRE 9 /* GRE processing done */ -#define PACKET_TAG_IN_PACKET_CHECKSUM 10 /* NIC checksumming done */ +#define PACKET_TAG_IN_PACKET_CHECKSUM 10 /* NIC checksumming done */ #define PACKET_TAG_PF_GENERATED 11 /* PF generated, pass always */ #ifdef MBTYPES |