Crate for raw socketing, can send raw packets and some protocols
curerr
crate, now using std::io::Error for error handling```rust use cursock::; use cursock::utils::;
let socket = Socket::new("wlan0", IpVer::V6).expect("initialize error"); // Linux
let socket = Socket::new("10", IpVer::V6).expect("initialize error"); // Windows, id of the interface you can get running "route PRINT"
let buffer: [u8; 1024] = [0; 1024];
socket.sendrawpacket(&buffer).expect("send error");
socket.destroy() ```