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