radius_rust/protocol/
mod.rs

1//! RADIUS protocol implementation
2//!
3//! `dictionary` module - represents RADIUS dictionary, that hold all attributes which are to be
4//! used by RADIUS Client & Server
5//!
6//! `radius_packet` module - represents an actual RADIUS packet, that is to be sent from RADIUS
7//! Client to RADIUS Server and/or RADIUS Server to RADIUS Client
8//!
9//! `error` module - represents custom errors defined for `radius-rust` crate
10
11
12pub mod dictionary;
13pub mod radius_packet;
14pub(crate) mod host;
15pub mod error;