Fix the TCP FIN emission with queued data rolling over TX buffer.

This commit is contained in:
whitequark 2017-01-25 06:20:57 +00:00
parent 9fbb5cfff1
commit 9b8671ce15
1 changed files with 1 additions and 1 deletions

View File

@ -924,7 +924,7 @@ impl<'a> TcpSocket<'a> {
// The FIN control flag occupies the place in the sequence space after
// the data in the current segment. If we still have some data left for the next
// segment (e.g. the receiver window is too small), then don't send FIN just yet.
let all_data_sent = self.tx_buffer.len() == offset + size;
let all_data_sent = self.tx_buffer.len() == offset + data.len();
match self.state {
State::FinWait1 | State::LastAck if all_data_sent => {
// We should notify the other side that we've closed the transmit half