svn commit: r294213 - stable/10/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Sun Jan 17 12:13:23 UTC 2016


Author: tuexen
Date: Sun Jan 17 12:13:21 2016
New Revision: 294213
URL: https://svnweb.freebsd.org/changeset/base/294213

Log:
  MFC r291752:
  Fix a bug where a stream reset request wasn't retranmitted when the
  peer indicated "In progress".

Modified:
  stable/10/sys/netinet/sctp_input.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/netinet/sctp_input.c
==============================================================================
--- stable/10/sys/netinet/sctp_input.c	Sun Jan 17 12:08:52 2016	(r294212)
+++ stable/10/sys/netinet/sctp_input.c	Sun Jan 17 12:13:21 2016	(r294213)
@@ -3651,6 +3651,7 @@ sctp_handle_stream_reset_response(struct
 					 * Set it up so we don't stop
 					 * retransmitting
 					 */
+					asoc->stream_reset_outstanding++;
 					stcb->asoc.str_reset_seq_out--;
 					asoc->stream_reset_out_is_outstanding = 1;
 					no_clear = 1;


More information about the svn-src-all mailing list