Cursock v1.0.1

Crate for raw socketing, can send raw packets and some protocols

Changelog

Protocols

Platforms

Links

Examples

```rust use cursock::; use cursock::utils::;

[cfg(target_os = "linux")]

let socket = Socket::new("wlan0", IpVer::V6).expect("initialize error"); // Linux

[cfg(target_os = "windows")]

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() ```