Browse Source

tcp: do not abort socket when receiving invalid packets.

This matches the Linux behavior.
Dario Nieuwenhuis 3 years ago
parent
commit
eae480525b
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/socket/tcp.rs

+ 1 - 2
src/socket/tcp.rs

@@ -1361,7 +1361,6 @@ impl<'a> TcpSocket<'a> {
                     self.local_endpoint,
                     self.remote_endpoint
                 );
-                self.abort();
                 return Err(Error::Dropped);
             }
             // ACK in the SYN-RECEIVED state must have the exact ACK number, or we RST it.
@@ -3479,7 +3478,7 @@ mod test {
             },
             Err(Error::Dropped)
         );
-        assert_eq!(s.state, State::Closed);
+        assert_eq!(s.state, State::SynSent);
     }
 
     #[test]