diff options
| author | Kristof Provost <kp@FreeBSD.org> | 2025-08-20 14:28:24 +0000 |
|---|---|---|
| committer | Kristof Provost <kp@FreeBSD.org> | 2025-09-15 09:32:34 +0000 |
| commit | 79a0959affecd2b055b9048002c0635018576103 (patch) | |
| tree | c01b2e68a4b72a3d4b09a3284321a95263e0cb78 | |
| parent | c2d03a920ec75c431f0c6af0ad9cb6ae43e48dda (diff) | |
pfctl: add af-to and other missing action types in print_rule()
Sponsored by: Rubicon Communications, LLC ("Netgate")
| -rw-r--r-- | sbin/pfctl/pfctl_parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/pfctl/pfctl_parser.c b/sbin/pfctl/pfctl_parser.c index 6df7af0cc574..a2b1e4d0841d 100644 --- a/sbin/pfctl/pfctl_parser.c +++ b/sbin/pfctl/pfctl_parser.c @@ -844,7 +844,7 @@ print_rule(struct pfctl_rule *r, const char *anchor_call, int verbose, int numer { static const char *actiontypes[] = { "pass", "block", "scrub", "no scrub", "nat", "no nat", "binat", "no binat", "rdr", "no rdr", - "", "", "match"}; + "synproxy drop", "defer", "match", "af-rt", "route-to" }; static const char *anchortypes[] = { "anchor", "anchor", "anchor", "anchor", "nat-anchor", "nat-anchor", "binat-anchor", "binat-anchor", "rdr-anchor", "rdr-anchor" }; |
