summaryrefslogtreecommitdiff
path: root/usr/src/uts/common/inet/sctp/sctp_timer.c
diff options
context:
space:
mode:
authorkcpoon <none@none>2007-01-17 08:17:24 -0800
committerkcpoon <none@none>2007-01-17 08:17:24 -0800
commit1c25cdbd0f6ba3ec11a8ab1653c801027a1ffc61 (patch)
tree6b36906661c6222d5758715c83359b48b502d90d /usr/src/uts/common/inet/sctp/sctp_timer.c
parente0968231baadf7c6a3b39022a6a4b334ac9db20c (diff)
downloadillumos-gate-1c25cdbd0f6ba3ec11a8ab1653c801027a1ffc61.tar.gz
6513446 ETSI TS 102 144 requires that SCTP delayed SACK frequency to be tunable
Diffstat (limited to 'usr/src/uts/common/inet/sctp/sctp_timer.c')
-rw-r--r--usr/src/uts/common/inet/sctp/sctp_timer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/uts/common/inet/sctp/sctp_timer.c b/usr/src/uts/common/inet/sctp/sctp_timer.c
index fb19313897..93e937edf8 100644
--- a/usr/src/uts/common/inet/sctp/sctp_timer.c
+++ b/usr/src/uts/common/inet/sctp/sctp_timer.c
@@ -20,7 +20,7 @@
*/
/*
- * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
+ * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
@@ -365,7 +365,7 @@ void
sctp_ack_timer(sctp_t *sctp)
{
sctp->sctp_ack_timer_running = 0;
- sctp->sctp_sack_toggle = 2;
+ sctp->sctp_sack_toggle = sctp_deferred_acks_max;
BUMP_MIB(&sctp_mib, sctpOutAckDelayed);
sctp_sack(sctp, NULL);
}