#[cfg(unix)]
mod cmsg;
mod proto;
mod socket;
#[cfg(unix)]
mod unix;
pub use proto::{EcnCodepoint, RecvMeta, SocketType, Transmit, UdpCapabilities};
pub use socket::UdpSocket;
pub const BATCH_SIZE: usize = {
if cfg!(target_os = "linux") {
32
} else {
1
}
};