File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -76,9 +76,9 @@ impl Codec {
76
76
77
77
let mut source = SocketAddr :: new ( IpAddr :: V4 ( packet. get_source ( ) ) , 0 ) ;
78
78
let mut destination = SocketAddr :: new ( IpAddr :: V4 ( packet. get_destination ( ) ) , 0 ) ;
79
+ let mut payload = vec ! [ ] ;
79
80
80
81
let protocol = packet. get_next_level_protocol ( ) ;
81
-
82
82
match protocol {
83
83
IpHeaderProtocols :: Tcp => {
84
84
let seg = TcpPacket :: new ( packet. payload ( ) ) . or_else ( || {
@@ -87,6 +87,7 @@ impl Codec {
87
87
} ) ?;
88
88
source. set_port ( seg. get_source ( ) ) ;
89
89
destination. set_port ( seg. get_destination ( ) ) ;
90
+ payload = seg. payload ( ) . to_vec ( ) ;
90
91
}
91
92
IpHeaderProtocols :: Udp => {
92
93
let seg = UdpPacket :: new ( packet. payload ( ) ) . or_else ( || {
@@ -95,13 +96,12 @@ impl Codec {
95
96
} ) ?;
96
97
source. set_port ( seg. get_source ( ) ) ;
97
98
destination. set_port ( seg. get_destination ( ) ) ;
99
+ payload = seg. payload ( ) . to_vec ( ) ;
98
100
}
99
101
IpHeaderProtocols :: Icmp => { }
100
102
proto => log:: debug!( "ignoring v4 packet, transport/protocol type {proto}" ) ,
101
103
}
102
104
103
- let payload = packet. payload ( ) . to_vec ( ) ;
104
-
105
105
Some ( ParsedPacket {
106
106
source,
107
107
destination,
You can’t perform that action at this time.
0 commit comments