PF's "set limit" option allows five memory pools to be specified
(states, frags, src-nodes, tables, and table-entries); however, the
pf.conf BNF grammar specification on the pf.conf(5) man page only
lists three.
The following diff fixes this by completing the list of possible
values for the limit-item symbol. Does it look ok?
Thanks,
Lawrence
Index: pf.conf.5
===================================================================
RCS file: /cvs/src/share/man/man5/pf.conf.5,v
retrieving revision 1.492
diff -u -p -r1.492 pf.conf.5
--- pf.conf.5 6 Apr 2011 13:20:44 -0000 1.492
+++ pf.conf.5 1 May 2011 19:07:49 -0000
@@ -2799,7 +2799,8 @@ timeout = ( "tcp.first" | "tcp.op
"adaptive.start" | "adaptive.end" ) number
limit-list = limit-item [ [ "," ] limit-list ]
-limit-item = ( "states" | "frags" | "src-nodes" ) number
+limit-item = ( "states" | "frags" | "src-nodes" | "tables" |
+ "table-entries" ) number
pooltype = ( "bitmask" | "random" |
"source-hash" [ ( hex-key | string-key ) ] |