summaryrefslogtreecommitdiffstats
path: root/net/sctp/socket.c
diff options
context:
space:
mode:
authorVlad Yasevich2006-01-31 00:59:54 +0100
committerDavid S. Miller2006-01-31 00:59:54 +0100
commit81845c21dc1ec7ce2bf12845dbc01e4880f9ea9a (patch)
tree70bcfbad6cb4076b16da72f7c7f31be65b7e7dfc /net/sctp/socket.c
parent[IPV6] MLDv2: fix change records when transitioning to/from inactive (diff)
downloadkernel-qcow2-linux-81845c21dc1ec7ce2bf12845dbc01e4880f9ea9a.tar.gz
kernel-qcow2-linux-81845c21dc1ec7ce2bf12845dbc01e4880f9ea9a.tar.xz
kernel-qcow2-linux-81845c21dc1ec7ce2bf12845dbc01e4880f9ea9a.zip
[SCTP]: correct the number of INIT retransmissions
We currently count the initial INIT/COOKIE_ECHO chunk toward the retransmit count and thus sends a total of sctp_max_retrans_init chunks. The correct behavior is to retransmit the chunk sctp_max_retrans_init in addition to sending the original. Signed-off-by: Vlad Yasevich <vladislav.yasevich@hp.com> Signed-off-by: Sridhar Samudrala <sri@us.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/socket.c')
-rw-r--r--net/sctp/socket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/socket.c b/net/sctp/socket.c
index fb1821d9f338..0ea947eb6813 100644
--- a/net/sctp/socket.c
+++ b/net/sctp/socket.c
@@ -5426,7 +5426,7 @@ out:
return err;
do_error:
- if (asoc->init_err_counter + 1 >= asoc->max_init_attempts)
+ if (asoc->init_err_counter + 1 > asoc->max_init_attempts)
err = -ETIMEDOUT;
else
err = -ECONNREFUSED;