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