diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2002-06-08 08:05:15 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2002-06-08 08:05:15 +0000 |
commit | f22f00216b56c47cfae604fa93db36d65cac38ba (patch) | |
tree | 54cc823f32ebf4c03781b4aaaaa1a58bfbb7097e | |
parent | f89c39e4bbdd38c9f9903adc6156420f7a64e6a4 (diff) |
document macro concatenation
ok dhartmei@
-rw-r--r-- | share/man/man5/pf.conf.5 | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/share/man/man5/pf.conf.5 b/share/man/man5/pf.conf.5 index a0c636c6f49..2c6b1263a00 100644 --- a/share/man/man5/pf.conf.5 +++ b/share/man/man5/pf.conf.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pf.conf.5,v 1.52 2002/06/08 07:58:07 dhartmei Exp $ +.\" $OpenBSD: pf.conf.5,v 1.53 2002/06/08 08:05:14 henning Exp $ .\" .\" Copyright (c) 2001, Daniel Hartmeier .\" All rights reserved. @@ -409,6 +409,12 @@ supports macro definition and expansion like: Macro names must start with a letter and may contain letters, digits and underscores. Macros are not expanded recursively. +.Pp +Macros can be concatenated: +.Bd -literal + webservers = "{ 10.0.0.1, 10.0.0.7, 10.0.0.8, " + webservers += " 10.0.0.17, 10.0.0.25, 10.0.0.37 }" +.Ed .Sh STATEFUL INSPECTION .Em pf is a stateful packet filter, which means it can track the state of |