Creates a new Netlink socket.
impl Socket { fn netlink(proto: Proto, flags: SockFlags) -> Result<Socket, Errno> }
This is equivalent to
Socket::new(domain::Netlink, kind::Raw, proto.0 as c_int, flags)
netlink(7)