patch-2.2.18 linux/net/ipv4/tcp_input.c
Next file: linux/net/ipv4/tcp_ipv4.c
Previous file: linux/net/ipv4/tcp.c
Back to the patch index
Back to the overall index
- Lines: 48
- Date:
Sat Dec 9 21:13:58 2000
- Orig file:
v2.2.17/net/ipv4/tcp_input.c
- Orig date:
Sat Sep 9 18:42:51 2000
diff -u --new-file --recursive --exclude-from /usr/src/exclude v2.2.17/net/ipv4/tcp_input.c linux/net/ipv4/tcp_input.c
@@ -5,7 +5,7 @@
*
* Implementation of the Transmission Control Protocol(TCP).
*
- * Version: $Id: tcp_input.c,v 1.164.2.15 2000/05/27 04:01:49 davem Exp $
+ * Version: $Id: tcp_input.c,v 1.164.2.18 2000/12/08 20:29:33 davem Exp $
*
* Authors: Ross Biro, <bir7@leland.Stanford.Edu>
* Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
@@ -187,7 +187,7 @@
static __inline__ void tcp_set_rto(struct tcp_opt *tp)
{
- tp->rto = (tp->srtt >> 3) + tp->mdev;
+ tp->rto = (tp->srtt >> 3) + max(HZ/5, tp->mdev);
tp->rto += (tp->rto >> 2) + (tp->rto >> (tp->snd_cwnd-1));
}
@@ -367,16 +367,16 @@
switch (opcode) {
case TCPOPT_EOL:
- return;
+ goto check_syn;
case TCPOPT_NOP: /* Ref: RFC 793 section 3.1 */
length--;
continue;
default:
opsize=*ptr++;
if (opsize < 2) /* "silly options" */
- return;
+ goto check_syn;
if (opsize > length)
- break; /* don't parse partial options */
+ goto check_syn; /* don't parse partial options */
switch(opcode) {
case TCPOPT_MSS:
if(opsize==TCPOLEN_MSS && th->syn) {
@@ -439,7 +439,8 @@
length-=opsize;
};
}
- if(th->syn && saw_mss == 0)
+check_syn:
+ if (th->syn && saw_mss == 0)
tp->mss_clamp = 536;
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)