Cursock v1.2.7

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

Changelog

Todo

Protocols

Platforms

Links

Examples

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

let socket = Socket::new("wlan0").expect("initialize error"); let mut buffer = [0; 1000];

socket.readrawpacket(&mut buffer).expect("read error");

socket.destroy(); ```