Crate for raw socketing, can send raw packets and some protocols
```rust
let socket = cursock::Socket::new("wlan0", true).expect("initialize error"); // Linux
let socket = cursock::Socket::new("{D37YDFA1-7F4F-F09E-V622-5PACEF22AE49}", true).expect("initialize error"); // Windows // Since windows socket implementation is using npcap you should pass "npcap-like" interface
let buffer: [u8; 1024] = [0; 1024];
socket.sendrawpacket(&buffer, true).expect("send error");
socket.destroy() ```