[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20171018180826.7236-1-phil@nwl.cc>
Date: Wed, 18 Oct 2017 20:08:26 +0200
From: Phil Sutter <phil@....cc>
To: Stephen Hemminger <stephen@...workplumber.org>
Cc: netdev@...r.kernel.org
Subject: [iproute PATCH] ss: Detect IPPROTO_ICMPV6 sockets
Prefix IPPROTO_ICMPV6 sockets with 'icmp6' instead of '???'.
Signed-off-by: Phil Sutter <phil@....cc>
---
misc/ss.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/misc/ss.c b/misc/ss.c
index e37aba6022eb4..b5c6bbc05766e 100644
--- a/misc/ss.c
+++ b/misc/ss.c
@@ -784,6 +784,8 @@ static const char *proto_name(int protocol)
return "sctp";
case IPPROTO_DCCP:
return "dccp";
+ case IPPROTO_ICMPV6:
+ return "icmp6";
}
return "???";
--
2.13.1
Powered by blists - more mailing lists