diff options
author | Lawrence Teo <lteo@cvs.openbsd.org> | 2018-04-05 03:32:40 +0000 |
---|---|---|
committer | Lawrence Teo <lteo@cvs.openbsd.org> | 2018-04-05 03:32:40 +0000 |
commit | 60f200a61170b2ba9955ecad57a14acf50ecf870 (patch) | |
tree | 8ada6907307e18d2b02e81802dba662fefb2f8ee /sys | |
parent | 24068e7d52ea6f7f30e67d5cee08a4c5cb4fe1c4 (diff) |
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@
Diffstat (limited to 'sys')
-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, |