socket

Low-level networking interface for Rust modeled after Python's socket module

Homepage and repository: https://github.com/jstasiak/rust-socket

Documentation: http://www.rustdox.com/github.com/jstasiak/rust-socket.git/socket/

Example

```rust use socket::{AFINET, SOREUSEADDR, SOCKDGRAM, Socket, SOLSOCKET};

let socket = Socket::new(AFINET, SOCKDGRAM, 0).unwrap(); socket.setsockopt(SOLSOCKET, SOREUSEADDR, 1).unwrap(); socket.bind("0.0.0.0:5353").unwrap(); ```

Status

Experimental

License

MIT