Docs.rs
  • radius-rust-0.4.4
    • radius-rust 0.4.4
    • Docs.rs crate page
    • MIT
    • Links
    • Homepage
    • Repository
    • crates.io
    • Source
    • Owners
    • MikhailMS
    • Dependencies
      • async-std ^1.9.0 normal optional
      • async-trait ^0.1.48 normal optional
      • futures ^0.3.13 normal optional
      • hmac ^0.12.1 normal
      • md-5 ^0.10.1 normal
      • rand ^0.8.5 normal
      • thiserror ^1.0.32 normal
      • log ^0.4.17 dev
      • mio ^0.7.7 dev
      • simple_logger ^1.11.0 dev
    • Versions
    • 100% of the crate is documented
  • Platform
    • i686-pc-windows-msvc
    • i686-unknown-linux-gnu
    • x86_64-apple-darwin
    • x86_64-pc-windows-msvc
    • x86_64-unknown-linux-gnu
  • Feature flags
  • docs.rs
    • About docs.rs
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation

Crate radius_rust

radius_rust0.4.4

  • All Items

Crate Items

  • Re-exports
  • Modules

Crates

  • radius_rust

Crate radius_rust

Source
Expand description

Pure Rust implementation of RADIUS Protocol/Client/Server

If you want to built RADIUS Server, a good starting point is to look inside examples/*_radius_server.rs

If you want to build RADIUS Client, a good starting point is to look inside examples/*_radius_client.rs

Re-exports§

pub use client::client::Client;
pub use client::SyncClientTrait;
pub use server::server::Server;
pub use server::SyncServerTrait;

Modules§

client
Module contains RADIUS Client implementation and related traits definitions
features
Async RADIUS Server/Client Disabled
protocol
RADIUS protocol implementation
server
Module contains RADIUS Generic Server implementation and related traits definitions
tools
Various helper functions, that are used by RADIUS Client & Server to encode/decode information inside RADIUS packet They are also available to crate users to prepare data before it is packed into RADIUS packet

Results

Settings
Help
    trait
    radius_rust::client::SyncClientTrait
    This trait is to be implemented by user, if they are …
    method
    radius_rust::client::SyncClientTrait::send_packet
    &mut SyncClientTrait, &mut RadiusPacket -> Result<(), RadiusError>
    Responsible for sending packets off to RADIUS Server …
    method
    radius_rust::client::SyncClientTrait::send_and_receive_packet
    &mut SyncClientTrait, &mut RadiusPacket -> Result<Vec<u8>, RadiusError>
    Responsible for sending packets off to RADIUS Server …
No results :(
Try on DuckDuckGo?

Or try looking in one of these:
  • The Rust Reference for technical details about the language.
  • Rust By Example for expository code examples.
  • The Rust Book for introductions to language features and the language itself.
  • Docs.rs for documentation of crates released on crates.io.