diff options
Diffstat (limited to 'sys/net/pfvar.h')
-rw-r--r-- | sys/net/pfvar.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/net/pfvar.h b/sys/net/pfvar.h index 2424acf3eb0..c92d2731e5f 100644 --- a/sys/net/pfvar.h +++ b/sys/net/pfvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pfvar.h,v 1.33 2001/07/17 20:34:51 provos Exp $ */ +/* $OpenBSD: pfvar.h,v 1.34 2001/07/17 21:54:26 provos Exp $ */ /* * Copyright (c) 2001, Daniel Hartmeier @@ -71,9 +71,13 @@ struct pf_rule { u_int8_t flags; u_int8_t flagset; - u_int8_t return_rst; + + u_int8_t rule_flag; }; +#define PFRULE_RETURNRST 0x01 +#define PFRULE_NODF 0x02 + struct pf_state_host { u_int32_t addr; u_int16_t port; |