File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# twamp-rs
22
3- TWAMP [ RFC 5357] ( https://datatracker.ietf.org/doc/rfc5357/ ) implementation
3+ TWAMP [ RFC 5357] ( https://datatracker.ietf.org/doc/html/rfc5357 ) implementation
44in rust.
55
66Supports unauthenticated mode only.
Original file line number Diff line number Diff line change 1+ //! TWAMP Protocol Implementation [RFC 5357](https://datatracker.ietf.org/doc/html/rfc5357)
2+ //!
3+ //! This crate provides an implementation of the TWAMP protocol (unauthenticated mode),
4+ //! organized into the following components:
5+ //!
6+ //! - [`control_client`] - Control client implementation
7+ //! - [`server`] - Server implementation
8+ //! - [`session_reflector`] - Session reflector
9+ //! - [`session_sender`] - Session sender
10+ //! - [`timestamp`] - Timestamp utilities
11+ //! - [`twamp_control`] - TWAMP control protocol
12+ //! - [`twamp_test`] - TWAMP test protocol
13+
114#[ doc( inline) ]
215pub use control_client;
316#[ doc( inline) ]
You can’t perform that action at this time.
0 commit comments