Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
SajjadPourali committed Jul 3, 2024
1 parent 755f807 commit 2aaf0e8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/stream/tcp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ impl IpStackTcpStream {
tcp_header.rst = flags & RST != 0;
tcp_header.fin = flags & FIN != 0;
tcp_header.psh = flags & PSH != 0;


let ip_header = match (self.dst_addr.ip(), self.src_addr.ip()) {
(std::net::IpAddr::V4(dst), std::net::IpAddr::V4(src)) => {
Expand Down

0 comments on commit 2aaf0e8

Please sign in to comment.