diff options
author | Ryan Thomas McBride <mcbride@cvs.openbsd.org> | 2003-10-04 17:18:57 +0000 |
---|---|---|
committer | Ryan Thomas McBride <mcbride@cvs.openbsd.org> | 2003-10-04 17:18:57 +0000 |
commit | 5f648d41f7560d73de8884159fca817594213804 (patch) | |
tree | 9edb84acd5838d973e2e8b44dd40870fa89fc07f /share/man | |
parent | fa07141025f58e6fdc04f9324269e3becec3d6d2 (diff) |
DIOCBEGINADDRS takes struct pfioc_pooladdr, not u_int32_t
Fixes PR3511 from apaterno@dsnsecurity.com
Diffstat (limited to 'share/man')
-rw-r--r-- | share/man/man4/pf.4 | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/share/man/man4/pf.4 b/share/man/man4/pf.4 index 236405eab8c..bf5d7cdc0de 100644 --- a/share/man/man4/pf.4 +++ b/share/man/man4/pf.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pf.4,v 1.39 2003/10/02 00:25:42 mcbride Exp $ +.\" $OpenBSD: pf.4,v 1.40 2003/10/04 17:18:56 mcbride Exp $ .\" .\" Copyright (C) 2001, Kjell Wooding. All rights reserved. .\" @@ -72,11 +72,7 @@ Stops the packet filter. Starts the ALTQ bandwidth control system. .It Dv DIOCSTOPALTQ Stops the ALTQ bandwidth control system. -.It Dv DIOCBEGINADDRS Fa "u_int32_t" -Clears the buffer address pool -and returns a ticket for subsequent DIOCADDADDR, DIOCADDRULE and -DIOCCHANGERULE calls. -.It Dv DIOCADDADDR Fa "struct pfioc_pooladdr" +.It Dv DIOCBEGINADDRS Fa "pfioc_pool_addr" .Bd -literal struct pfioc_pooladdr { u_int32_t action; @@ -92,6 +88,12 @@ struct pfioc_pooladdr { }; .Ed .Pp +Clears the buffer address pool +and returns a +.Va ticket +for subsequent DIOCADDADDR, DIOCADDRULE and DIOCCHANGERULE calls. +.It Dv DIOCADDADDR Fa "struct pfioc_pooladdr" +.Pp Adds pool address .Va addr to the buffer address pool to be used in the following |