mirror of
https://github.com/tun2proxy/tun2proxy.git
synced 2025-04-21 14:29:10 +00:00
unhandled transport
This commit is contained in:
parent
04a0555101
commit
5e32994f91
1 changed files with 7 additions and 2 deletions
|
@ -319,8 +319,13 @@ where
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_ => {
|
IpStackStream::UnknownTransport(u) => {
|
||||||
log::trace!("Unknown transport");
|
let len = u.payload().len();
|
||||||
|
log::info!("#0 unhandled transport - Ip Protocol {:?}, length {}", u.ip_protocol(), len);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
IpStackStream::UnknownNetwork(pkt) => {
|
||||||
|
log::info!("#0 unknown transport - {} bytes", pkt.len());
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue