Browse Source

tcp: allow sending ACKs in FinWait2 state.

Dario Nieuwenhuis 4 years ago
parent
commit
65e5893153
1 changed files with 8 additions and 2 deletions
  1. 8 2
      src/socket/tcp.rs

+ 8 - 2
src/socket/tcp.rs

@@ -1574,8 +1574,9 @@ impl<'a> TcpSocket<'a> {
                 }
             }
 
-            // We do not transmit anything in the FIN-WAIT-2 state.
-            State::FinWait2 => return Err(Error::Exhausted),
+            // We do not transmit data in the FIN-WAIT-2 state, but we may transmit
+            // ACKs for incoming data.
+            State::FinWait2 => {}
 
             // We do not transmit data or control flags in the CLOSING or TIME-WAIT states,
             // but we may retransmit an ACK.
@@ -3093,6 +3094,11 @@ mod test {
             assert_eq!(data, b"abc");
             (3, ())
         }).unwrap();
+        recv!(s, [TcpRepr {
+            seq_number: LOCAL_SEQ + 1 + 1,
+            ack_number: Some(REMOTE_SEQ + 1 + 3),
+            ..RECV_TEMPL
+        }]);
     }
 
     #[test]