diff --git a/proxmox-rest-server/src/connection.rs b/proxmox-rest-server/src/connection.rs index 2ca83fe2..217af884 100644 --- a/proxmox-rest-server/src/connection.rs +++ b/proxmox-rest-server/src/connection.rs @@ -260,14 +260,14 @@ impl From<(ClientSender, InsecureClientSender)> for Sender { } struct AcceptState { - pub socket: InsecureClientStream, - pub peer: SocketAddr, - pub acceptor: Arc>, - pub accept_counter: Arc<()>, + socket: InsecureClientStream, + peer: SocketAddr, + acceptor: Arc>, + accept_counter: Arc<()>, } struct AcceptFlags { - pub is_debug: bool, + is_debug: bool, } impl AcceptBuilder {