Remove unneeded mut

This commit is contained in:
Pierre Lalet 2023-08-26 22:32:10 +02:00
parent 0b200ceaf4
commit b498d70602

View file

@ -354,7 +354,7 @@ impl Into<Vec<u8>> for StunPacket {
pub fn repl<'a>(
data: &'a [u8],
_masscanned: &Masscanned,
mut client_info: &mut ClientInfo,
client_info: &mut ClientInfo,
_tcb: Option<&mut TCPControlBlock>,
) -> Option<Vec<u8>> {
debug!("receiving STUN data");