From 864407f90bc7b3e685151a22bf36734ab3595cfe Mon Sep 17 00:00:00 2001 From: Karolin Varner Date: Wed, 25 Jun 2025 19:12:30 +0200 Subject: [PATCH] chore: Fix module documentation for app_server --- rosenpass/src/app_server.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rosenpass/src/app_server.rs b/rosenpass/src/app_server.rs index 02d4a5b..ba984bb 100644 --- a/rosenpass/src/app_server.rs +++ b/rosenpass/src/app_server.rs @@ -1,5 +1,6 @@ -/// This contains the bulk of the rosenpass server IO handling code whereas -/// the actual cryptographic code lives in the [crate::protocol] module +//! This contains the bulk of the rosenpass server IO handling code whereas +//! the actual cryptographic code lives in the [crate::protocol] module + use std::collections::{HashMap, VecDeque}; use std::io::{stdout, ErrorKind, Write}; use std::net::{Ipv4Addr, Ipv6Addr, SocketAddr, SocketAddrV4, SocketAddrV6, ToSocketAddrs};