Creates a Unix/SeqPacket socket.
impl Socket { fn unix_seqpacket(flags: SockFlags) -> Result<Socket, Errno> }
This is equivalent to
Socket::new(domain::Unix, kind::SeqPacket, 0, flags)
unix(7)