diff options
author | 2018-04-05 03:32:39 +0000 | |
---|---|---|
committer | 2018-04-05 03:32:39 +0000 | |
commit | 1a16896473234c2ff3fc7870a14bcd445f794be0 (patch) | |
tree | 4c7a9c96b3b597c4b14068b2d1cececd6691b554 | |
parent | Explicitly check PF_TRANS_RULESET in DIOCXBEGIN, DIOCXCOMMIT, and DIOCXROLLBACK. (diff) | |
download | wireguard-openbsd-1a16896473234c2ff3fc7870a14bcd445f794be0.tar.xz wireguard-openbsd-1a16896473234c2ff3fc7870a14bcd445f794be0.zip |
Zap the obsolete PF_TRANS_ALTQ.
Note: Remember to "make includes" and recompile the following programs together
with the kernel:
sbin/pfctl
usr.sbin/authpf
usr.sbin/ftp-proxy
usr.sbin/relayd
usr.sbin/tftp-proxy
Thanks to sthen@ for checking the ports tree.
ok bluhm@ sashan@ visa@
-rw-r--r-- | sys/net/pfvar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/pfvar.h b/sys/net/pfvar.h index d7271ffe326..dc7d7adf767 100644 --- a/sys/net/pfvar.h +++ b/sys/net/pfvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pfvar.h,v 1.476 2018/02/09 09:35:03 dlg Exp $ */ +/* $OpenBSD: pfvar.h,v 1.477 2018/04/05 03:32:39 lteo Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -68,7 +68,7 @@ enum { PF_INOUT, PF_IN, PF_OUT, PF_FWD }; enum { PF_PASS, PF_DROP, PF_SCRUB, PF_NOSCRUB, PF_NAT, PF_NONAT, PF_BINAT, PF_NOBINAT, PF_RDR, PF_NORDR, PF_SYNPROXY_DROP, PF_DEFER, PF_MATCH, PF_DIVERT, PF_RT, PF_AFRT }; -enum { PF_TRANS_RULESET, PF_TRANS_ALTQ, PF_TRANS_TABLE }; +enum { PF_TRANS_RULESET, PF_TRANS_TABLE }; enum { PF_OP_NONE, PF_OP_IRG, PF_OP_EQ, PF_OP_NE, PF_OP_LT, PF_OP_LE, PF_OP_GT, PF_OP_GE, PF_OP_XRG, PF_OP_RRG }; enum { PF_CHANGE_NONE, PF_CHANGE_ADD_HEAD, PF_CHANGE_ADD_TAIL, |