docs(wireguard-broker): add docs and examples

This commit is contained in:
David Niehues
2024-12-16 16:27:47 +01:00
parent dd0db53e8b
commit c78a9cb777
11 changed files with 751 additions and 6 deletions

View File

@@ -1,3 +1,9 @@
//! 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;