chore: fix typo

This commit is contained in:
sigoden
2024-03-08 00:46:35 +00:00
parent 1c41db0c2d
commit 48066d79e0
3 changed files with 4 additions and 4 deletions

View File

@@ -96,7 +96,7 @@ fn serve(args: Args, running: Arc<AtomicBool>) -> Result<Vec<JoinHandle<()>>> {
loop {
let (cnx, addr) = listener.accept().await.unwrap();
let Ok(stream) = tls_accepter.accept(cnx).await else {
warn!("During cls handshake connection from {}", addr);
warn!("During tls handshake connection from {}", addr);
continue;
};
let stream = TokioIo::new(stream);