chore(snownet): fix buffering log message (#10060)

What we are actually buffering here are unencrypted IP packets that are
waiting for the tunnel to be established.
This commit is contained in:
Thomas Eizinger
2025-08-01 22:51:49 +00:00
committed by GitHub
parent 269286ab1b
commit a4eb6509c6

View File

@@ -442,7 +442,7 @@ where
ip_buffer.push(packet);
let num_buffered = ip_buffer.len();
tracing::debug!(%num_buffered, %cid, "ICE is still in progress, buffering WG handshake");
tracing::debug!(%num_buffered, %cid, "ICE is still in progress, buffering IP packet");
return Ok(None);
}