summaryrefslogtreecommitdiff
path: root/sys/net/pfvar.h
diff options
context:
space:
mode:
authorMarco Pfatschbacher <mpf@cvs.openbsd.org>2008-09-22 10:22:20 +0000
committerMarco Pfatschbacher <mpf@cvs.openbsd.org>2008-09-22 10:22:20 +0000
commit1d08940ed611dde0f3d98de2e976203326542e46 (patch)
tree1d5a7ff975fd10debcd4d86b64dcb717b232b5af /sys/net/pfvar.h
parent3daf558d24dc1a1d69db5039c3b5e2b9e1dbacf2 (diff)
Reorder PFSTATE_PFLOW define:
It applies to state_flags, not to sync_flags. OK henning@, gollo@
Diffstat (limited to 'sys/net/pfvar.h')
-rw-r--r--sys/net/pfvar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/pfvar.h b/sys/net/pfvar.h
index 3354151eba8..2fb1d99b0be 100644
--- a/sys/net/pfvar.h
+++ b/sys/net/pfvar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pfvar.h,v 1.278 2008/09/09 13:56:39 henning Exp $ */
+/* $OpenBSD: pfvar.h,v 1.279 2008/09/22 10:22:19 mpf Exp $ */
/*
* Copyright (c) 2001 Daniel Hartmeier
@@ -765,12 +765,12 @@ struct pf_state {
u_int8_t state_flags;
#define PFSTATE_ALLOWOPTS 0x01
#define PFSTATE_SLOPPY 0x02
+#define PFSTATE_PFLOW 0x04
u_int8_t timeout;
u_int8_t sync_flags;
#define PFSTATE_NOSYNC 0x01
#define PFSTATE_FROMSYNC 0x02
#define PFSTATE_STALE 0x04
-#define PFSTATE_PFLOW 0x08
};
/*