rest-server: drop some unnecessary 'pub's

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2024-07-10 12:37:51 +02:00
parent f6bacbb58f
commit ce802d8320

View File

@ -260,14 +260,14 @@ impl From<(ClientSender, InsecureClientSender)> for Sender {
} }
struct AcceptState { struct AcceptState {
pub socket: InsecureClientStream, socket: InsecureClientStream,
pub peer: SocketAddr, peer: SocketAddr,
pub acceptor: Arc<Mutex<SslAcceptor>>, acceptor: Arc<Mutex<SslAcceptor>>,
pub accept_counter: Arc<()>, accept_counter: Arc<()>,
} }
struct AcceptFlags { struct AcceptFlags {
pub is_debug: bool, is_debug: bool,
} }
impl AcceptBuilder { impl AcceptBuilder {