procstat: decode SOCK_SEQPACKET unix domain socket type

Reviewed by:	markj
Sponsored by:	The FreeBSD Foundation
MFC after:	1 week
Differential revision:	https://reviews.freebsd.org/D49525
This commit is contained in:
Konstantin Belousov 2025-03-26 20:42:31 +02:00
parent 641794f94f
commit 8011df62f5

View file

@ -75,6 +75,8 @@ protocol_to_string(int domain, int type, int protocol)
return ("UDS");
case SOCK_DGRAM:
return ("UDD");
case SOCK_SEQPACKET:
return ("UDQ");
default:
return ("UD?");
}