mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
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:
parent
641794f94f
commit
8011df62f5
1 changed files with 2 additions and 0 deletions
|
|
@ -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?");
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue