msrt-udp 0.1.0

Tokio UDP adapters for MSRT.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Tokio UDP adapters for MSRT.
#![allow(clippy::std_instead_of_core)]
#![allow(clippy::large_enum_variant)]

mod client;
mod error;
mod event;
mod server;
#[cfg(test)]
mod tests;

pub use client::UdpClient;
pub use error::{Error, Result};
pub use event::{UdpClientEvent, UdpServerEvent};
pub use msrt::endpoint::{
    AcceptError, EngineConfig, IntegrityConfig, MessageEvent, PeerState, SendFailedEvent,
};
pub use server::UdpServer;