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 {
pub socket: InsecureClientStream,
pub peer: SocketAddr,
pub acceptor: Arc<Mutex<SslAcceptor>>,
pub accept_counter: Arc<()>,
socket: InsecureClientStream,
peer: SocketAddr,
acceptor: Arc<Mutex<SslAcceptor>>,
accept_counter: Arc<()>,
}
struct AcceptFlags {
pub is_debug: bool,
is_debug: bool,
}
impl AcceptBuilder {