diff options
author | Ryan Thomas McBride <mcbride@cvs.openbsd.org> | 2002-12-22 19:59:14 +0000 |
---|---|---|
committer | Ryan Thomas McBride <mcbride@cvs.openbsd.org> | 2002-12-22 19:59:14 +0000 |
commit | f0a0138bce3917c8bd0285684b510a8170ab6b2e (patch) | |
tree | b13d173c1e0ef99ec345c785c53d3a47df5fffcd /sys | |
parent | f0517d7fb2112bc5674cef649af14b30d19defb2 (diff) |
pfioc_changealtq is not needed anymore; queues will eventually be
referenced by number in DIOCCHANGEALTQ (like rule and pooladdress)
"go for it" henning@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/net/pfvar.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/sys/net/pfvar.h b/sys/net/pfvar.h index e7483bb55f2..c40baa127c2 100644 --- a/sys/net/pfvar.h +++ b/sys/net/pfvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pfvar.h,v 1.116 2002/12/22 02:33:14 mcbride Exp $ */ +/* $OpenBSD: pfvar.h,v 1.117 2002/12/22 19:59:13 mcbride Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -685,17 +685,12 @@ struct pfioc_limit { }; struct pfioc_altq { + u_int32_t action; u_int32_t ticket; u_int32_t nr; struct pf_altq altq; }; -struct pfioc_changealtq { - u_int32_t action; - struct pf_altq oldaltq; - struct pf_altq newaltq; -}; - struct pfioc_qstats { u_int32_t ticket; u_int32_t nr; |