diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2007-06-11 11:18:15 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2007-06-11 11:18:15 +0000 |
commit | 09ba08d9b6eb5c3dd9055172842ad119027a6e86 (patch) | |
tree | 40c7e164d2710414473c5389b22620625cf3ec09 /sys/net | |
parent | 9c004cc2365ad1f8f4d15f93aafe072be63c9933 (diff) |
move definitions for the flags in the mbuf header used by pf to mbuf.h
since we include the mbuf header parts for pf unconditionally, we should
be able to check them unconditionally as well. ok mcbride markus
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/pfvar.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/net/pfvar.h b/sys/net/pfvar.h index 64d1bde1c77..07a944cc16e 100644 --- a/sys/net/pfvar.h +++ b/sys/net/pfvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pfvar.h,v 1.249 2007/06/01 18:44:23 henning Exp $ */ +/* $OpenBSD: pfvar.h,v 1.250 2007/06/11 11:18:14 henning Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -1274,10 +1274,6 @@ struct pf_altq { u_int32_t qid; /* return value */ }; -#define PF_TAG_GENERATED 0x01 -#define PF_TAG_FRAGCACHE 0x02 -#define PF_TAG_TRANSLATE_LOCALHOST 0x04 - struct pf_tag { u_int16_t tag; /* tag id */ }; |