Handle Packet::Nop

This commit is contained in:
Tony Garnock-Jones 2024-05-19 21:54:48 +02:00
parent 3e0d6af497
commit 39f0e8cdf1
1 changed files with 4 additions and 0 deletions

View File

@ -385,6 +385,10 @@ impl TunnelRelay {
tracing::info!(?label, ?fields, "received Extension from peer");
Ok(())
}
P::Packet::Nop(_b) => {
tracing::trace!("received Nop from peer");
Ok(())
}
P::Packet::Error(b) => {
tracing::info!(message = ?b.message.clone(),
detail = ?b.detail.clone(),