summaryrefslogtreecommitdiff
path: root/sys/net/pfvar.h
diff options
context:
space:
mode:
authorMike Belopuhov <mikeb@cvs.openbsd.org>2012-07-26 12:25:32 +0000
committerMike Belopuhov <mikeb@cvs.openbsd.org>2012-07-26 12:25:32 +0000
commite5a7fcd0defe4fb26e3c90e1baaeaabff837a928 (patch)
treecc821c897824b1e0d04535e1b1a93c0cea350a84 /sys/net/pfvar.h
parentb6c566d9437a9a046cdb8dec99036c37a55fb241 (diff)
rename all_state_flags to state_flags to finish the transition
to the 16 bit flags; reminded by claudio, ok henning
Diffstat (limited to 'sys/net/pfvar.h')
-rw-r--r--sys/net/pfvar.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/pfvar.h b/sys/net/pfvar.h
index 3580ec40809..8ea5fa2eb20 100644
--- a/sys/net/pfvar.h
+++ b/sys/net/pfvar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pfvar.h,v 1.366 2012/07/13 11:14:04 henning Exp $ */
+/* $OpenBSD: pfvar.h,v 1.367 2012/07/26 12:25:31 mikeb Exp $ */
/*
* Copyright (c) 2001 Daniel Hartmeier
@@ -906,13 +906,13 @@ struct pfsync_state {
u_int8_t proto;
u_int8_t direction;
u_int8_t log;
- u_int8_t state_flags; /* XXX remove after 5.0 */
+ u_int8_t pad0;
u_int8_t timeout;
u_int8_t sync_flags;
u_int8_t updates;
u_int8_t min_ttl;
u_int8_t set_tos;
- u_int16_t all_state_flags;
+ u_int16_t state_flags;
u_int8_t pad[2];
} __packed;