diff options
author | Michael Schwendt <mschwendt@yahoo.com> | 2002-09-07 14:31:01 +0000 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2002-09-07 14:31:01 +0000 |
commit | e95bd7a204bd19bc526e599730bc86657d07f57b (patch) | |
tree | afc8cb5836ee4e2307388bcad81fa7af6a91447b /extensions/libip6t_LOG.c | |
parent | a713ce0dba73e45d569bf62fdb5248bc1d4694e9 (diff) |
make IPv4 and IPv6 LOG target save() the log-level as string, instead of the
numeric value. (Michael Schwendt)
Diffstat (limited to 'extensions/libip6t_LOG.c')
-rw-r--r-- | extensions/libip6t_LOG.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/extensions/libip6t_LOG.c b/extensions/libip6t_LOG.c index f4d87aac..843ff7e8 100644 --- a/extensions/libip6t_LOG.c +++ b/extensions/libip6t_LOG.c @@ -225,12 +225,21 @@ save(const struct ip6t_ip6 *ip, const struct ip6t_entry_target *target) { const struct ip6t_log_info *loginfo = (const struct ip6t_log_info *)target->data; + unsigned int i = 0; if (strcmp(loginfo->prefix, "") != 0) printf("--log-prefix \"%s\" ", loginfo->prefix); - if (loginfo->level != LOG_DEFAULT_LEVEL) - printf("--log-level %u ", loginfo->level); + if (loginfo->level != LOG_DEFAULT_LEVEL) { + for (i = 0; + i < sizeof(ip6t_log_names) / sizeof(struct ip6t_log_names); + i++) { + if (loginfo->level == ip6t_log_names[i].level) { + printf("--log-level %s ", ip6t_log_names[i].name); + break; + } + } + } if (loginfo->logflags & IP6T_LOG_TCPSEQ) printf("--log-tcp-sequence "); |