diff options
author | Daniel Hartmeier <dhartmei@cvs.openbsd.org> | 2002-12-18 16:28:41 +0000 |
---|---|---|
committer | Daniel Hartmeier <dhartmei@cvs.openbsd.org> | 2002-12-18 16:28:41 +0000 |
commit | e91bc917a46b06f345b8c4b57be00eadf1bde6e7 (patch) | |
tree | 1e0106fa0567ab839c758590134b8563907d2367 /sbin | |
parent | c9ee298f96113ef932793c0728012b60df81860b (diff) |
Pass skip step values through ioctl interface, pfctl -vvsr shows them,
main purpose is making them regress-testable.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/pfctl/pfctl.c | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/sbin/pfctl/pfctl.c b/sbin/pfctl/pfctl.c index 513174d61ab..7a506d07aa4 100644 --- a/sbin/pfctl/pfctl.c +++ b/sbin/pfctl/pfctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl.c,v 1.107 2002/12/18 16:00:03 henning Exp $ */ +/* $OpenBSD: pfctl.c,v 1.108 2002/12/18 16:28:40 dhartmei Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -494,6 +494,27 @@ pfctl_show_rules(int dev, int opts, int format) break; default: print_rule(&pr.rule, opts & PF_OPT_VERBOSE2); + if (opts & PF_OPT_VERBOSE2) { + const char *t[PF_SKIP_COUNT] = { "a", + "i", "d", "f", "p", "sa", "sp", + "da", "dp" }; + int i; + + printf("[ Skip steps: "); + for (i = 0; i < PF_SKIP_COUNT; ++i) { + if (pr.rule.skip[i].nr == + pr.rule.nr + 1) + continue; + printf("%s=", t[i]); + if (pr.rule.skip[i].nr == -1) + printf("end "); + else if (pr.rule.skip[i].nr != + pr.rule.nr + 1) + printf("%u ", + pr.rule.skip[i].nr); + } + printf("]\n"); + } if (opts & PF_OPT_VERBOSE) printf("[ Evaluations: %-8llu Packets: %-8llu " "Bytes: %-10llu States: %-6u]\n\n", |