nex_socket/
lib.rs

1//! Convenience sockets built on top of `socket2` and `tokio`.
2//!
3//! This crate provides synchronous and asynchronous helpers for TCP, UDP and
4//! ICMP. The goal is to simplify lower level socket configuration across
5//! platforms while still allowing direct access when needed.
6
7pub mod icmp;
8pub mod tcp;
9pub mod udp;