diff --git a/vnt/src/ip_proxy/icmp_proxy.rs b/vnt/src/ip_proxy/icmp_proxy.rs index b2c549c..d59980a 100644 --- a/vnt/src/ip_proxy/icmp_proxy.rs +++ b/vnt/src/ip_proxy/icmp_proxy.rs @@ -250,12 +250,13 @@ impl ProxyHandler for IcmpProxy { SocketAddr::from(SocketAddrV4::new(dest_ip, 0)), )?; } - _ => { + header_other => { log::warn!( - "不支持的ip代理Icmp协议:{}->{}->{}", + "不支持的ip代理Icmp协议:{}->{}->{},{:?}", source, destination, - dest_ip + dest_ip, + header_other ); } }