binger-udp 0.1.0

Cross-platform, batch-native UDP I/O with platform-optimal syscalls (sendmmsg/recvmmsg on Linux, GSO/GRO, and more)
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Platform-specific socket address encoding/decoding and raw syscall wrappers.

#[cfg(unix)]
mod unix;
#[cfg(unix)]
pub(crate) use unix::*;

#[cfg(windows)]
mod windows_impl;
#[cfg(windows)]
pub(crate) use windows_impl::*;