diff options
author | Philipp Buehler <pb@cvs.openbsd.org> | 2002-07-15 12:57:28 +0000 |
---|---|---|
committer | Philipp Buehler <pb@cvs.openbsd.org> | 2002-07-15 12:57:28 +0000 |
commit | f254aaa4ac1cea16b9e67a8842e30cdc2b573098 (patch) | |
tree | 9d35acf3341fb0591a987eab43514f1e2bc12d76 /share/man | |
parent | ee62a7eef069e63a993121d1b457a5e030d2c62f (diff) |
catch up with reality (DIOC[SG]ETLIMIT)
ok henning@, dhartmei@
Diffstat (limited to 'share/man')
-rw-r--r-- | share/man/man4/pf.4 | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/share/man/man4/pf.4 b/share/man/man4/pf.4 index a0a2c713982..761beffe447 100644 --- a/share/man/man4/pf.4 +++ b/share/man/man4/pf.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pf.4,v 1.15 2002/03/26 09:38:30 dhartmei Exp $ +.\" $OpenBSD: pf.4,v 1.16 2002/07/15 12:57:27 pb Exp $ .\" .\" Copyright (C) 2001, Kjell Wooding. All rights reserved. .\" @@ -273,6 +273,17 @@ struct pfioc_tm { .It Dv DIOCGETTIMEOUT Fa "struct pfioc_tm" .It Dv DIOCCLRRULECTRS Clear per-rule statistics. +.It Dv DIOCSETLIMIT Fa "struct pfioc_limit" +Sets hard limits on the memory pools used by the packet filter. +.Bd -literal +struct pfioc_limit { + int psk_af; + int psk_proto; + struct pf_rule_addr psk_src; + struct pf_rule_addr psk_dst; +}; +.Ed +.It Dv DIOCGETLIMIT Fa "struct pfioc_limit" .El .Sh EXAMPLES The following example demonstrates how to use the DIOCNATLOOK command |