diff options
author | Phil Sutter <phil@nwl.cc> | 2021-09-27 16:59:49 +0200 |
---|---|---|
committer | Phil Sutter <phil@nwl.cc> | 2021-10-20 11:32:54 +0200 |
commit | fe83b12fc910e43e4f22a25b56210b0dd0afc3ee (patch) | |
tree | 6292f50bb841ab78f8af9f44129c3320c0194a6d /include/xtables.h | |
parent | 0687852da7ed0a7ec8ebc88b41031dcae18c8898 (diff) |
libxtables: Introduce xtables_globals print_help callback
With optstring being stored in struct xtables_globals as well, it is a
natural choice to store a pointer to a help printer also which matches
the supported options.
Signed-off-by: Phil Sutter <phil@nwl.cc>
Diffstat (limited to 'include/xtables.h')
-rw-r--r-- | include/xtables.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/xtables.h b/include/xtables.h index c872a042..ca674c26 100644 --- a/include/xtables.h +++ b/include/xtables.h @@ -425,6 +425,7 @@ struct xtables_globals struct option *opts; void (*exit_err)(enum xtables_exittype status, const char *msg, ...) __attribute__((noreturn, format(printf,2,3))); int (*compat_rev)(const char *name, uint8_t rev, int opt); + void (*print_help)(const struct xtables_rule_match *m); }; #define XT_GETOPT_TABLEEND {.name = NULL, .has_arg = false} |