Skip to content

Commit e7fbf6c

Browse files
Fix parse UDP and TCP packets correctly
1 parent 18ac9a4 commit e7fbf6c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/test-manager/src/network_monitor.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ impl Codec {
7676

7777
let mut source = SocketAddr::new(IpAddr::V4(packet.get_source()), 0);
7878
let mut destination = SocketAddr::new(IpAddr::V4(packet.get_destination()), 0);
79+
let mut payload = vec![];
7980

8081
let protocol = packet.get_next_level_protocol();
81-
8282
match protocol {
8383
IpHeaderProtocols::Tcp => {
8484
let seg = TcpPacket::new(packet.payload()).or_else(|| {
@@ -87,6 +87,7 @@ impl Codec {
8787
})?;
8888
source.set_port(seg.get_source());
8989
destination.set_port(seg.get_destination());
90+
payload = seg.payload().to_vec();
9091
}
9192
IpHeaderProtocols::Udp => {
9293
let seg = UdpPacket::new(packet.payload()).or_else(|| {
@@ -95,13 +96,12 @@ impl Codec {
9596
})?;
9697
source.set_port(seg.get_source());
9798
destination.set_port(seg.get_destination());
99+
payload = seg.payload().to_vec();
98100
}
99101
IpHeaderProtocols::Icmp => {}
100102
proto => log::debug!("ignoring v4 packet, transport/protocol type {proto}"),
101103
}
102104

103-
let payload = packet.payload().to_vec();
104-
105105
Some(ParsedPacket {
106106
source,
107107
destination,

0 commit comments

Comments
 (0)