mirror of
https://github.com/rosenpass/rosenpass.git
synced 2026-02-27 14:03:11 -08:00
11 lines
333 B
Rust
11 lines
333 B
Rust
//! This module implements the binary WireGuard broker protocol in the form of the [client::BrokerClient]
|
|
//! and the [server::BrokerServer].
|
|
//!
|
|
//! Specifically, The protocol enables the client to tell the server to set a pre-shared key for a
|
|
//! wireguard interface.
|
|
|
|
pub mod client;
|
|
pub mod config;
|
|
pub mod msgs;
|
|
pub mod server;
|