Skip to main content

msrt_udp/
lib.rs

1//! Tokio UDP adapters for MSRT.
2#![allow(clippy::std_instead_of_core)]
3#![allow(clippy::large_enum_variant)]
4
5mod client;
6mod error;
7mod event;
8mod server;
9#[cfg(test)]
10mod tests;
11
12pub use client::UdpClient;
13pub use error::{Error, Result};
14pub use event::{UdpClientEvent, UdpServerEvent};
15pub use msrt::endpoint::{
16    AcceptError, EngineConfig, IntegrityConfig, MessageEvent, PeerState, SendFailedEvent,
17};
18pub use server::UdpServer;