Get delayed SACK working again.

MFC after: 3 days.
This commit is contained in:
Michael Tuexen 2010-04-19 14:15:58 +00:00
parent 0ff2943ecb
commit 307b49efef
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=206840

View File

@ -2123,6 +2123,10 @@ sctp_process_a_data_chunk(struct sctp_tcb *stcb, struct sctp_association *asoc,
}
}
finish_express_del:
if (tsn == (asoc->cumulative_tsn + 1)) {
/* Update cum-ack */
asoc->cumulative_tsn = tsn;
}
if (last_chunk) {
*m = NULL;
}