summaryrefslogtreecommitdiffstats
path: root/src/datatype.c
diff options
context:
space:
mode:
authorPhil Oester <kernel@linuxace.com>2013-08-15 16:24:11 -0700
committerPablo Neira Ayuso <pablo@netfilter.org>2013-08-22 13:48:00 +0200
commit5f7bd74728981358e15b09a3ea9d9627b197f84c (patch)
treefae2b6170b7f258c64694930b27bcb5d38366b67 /src/datatype.c
parentc03424bce3fab4885056995a83c0c3a68ef0d235 (diff)
nftables: add additional --numeric level
Personally, I like seeing ports and IPs numerically, but prefer protocols to be shown by name. As such, add a third --numeric level which will show protocols by number, splitting them out from ports. -n/--numeric When specified once, show network addresses numerically. When specified twice, also show Internet services, user IDs and group IDs numerically. When specified thrice, also show protocols numerically. Signed-off-by: Phil Oester <kernel@linuxace.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src/datatype.c')
-rw-r--r--src/datatype.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/datatype.c b/src/datatype.c
index 932acc7d..3eec931b 100644
--- a/src/datatype.c
+++ b/src/datatype.c
@@ -502,7 +502,7 @@ static void inet_service_type_print(const struct expr *expr)
sin.sin_port = mpz_get_be16(expr->value);
err = getnameinfo((struct sockaddr *)&sin, sizeof(sin), NULL, 0,
buf, sizeof(buf),
- numeric_output < NUMERIC_ALL ? 0 : NI_NUMERICSERV);
+ numeric_output < NUMERIC_PORT ? 0 : NI_NUMERICSERV);
if (err != 0) {
getnameinfo((struct sockaddr *)&sin, sizeof(sin), NULL,
0, buf, sizeof(buf), NI_NUMERICSERV);