Re: TCP Fast Retransmit

2001-11-17 Thread Alfred Perlstein
* murthy kn <[EMAIL PROTECTED]> [07 10:54] wrote: > Hello, > > 1. Is there any sysctl variable to control the number of > duplicate acks after which the sending TCP gets into a fast > retransmit mode? No, but you can add one like so (i think): Index: tcp_input.c

Re: TCP Fast Retransmit

2001-11-17 Thread Jonathan Lemon
In article [EMAIL PROTECTED]> you write: >Hello, > >1. Is there any sysctl variable to control the number of >duplicate acks after which the sending TCP gets into a fast >retransmit mode? No, but the current limit is in tcp_input.c: static int tcprexmtthresh = 3; so you can easily chang