mirror of
git://git.9front.org/plan9front/plan9front
synced 2025-01-12 11:10:06 +00:00
ip/ppp: increase echo timeout to 5 periods (25 seconds)
I get every hour a delay of the echo replies for as long as 20 seconds causing reconnects. It does recover however and sends all the replies eventually.
This commit is contained in:
parent
74c1f4730b
commit
23f34184d6
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ enum {
|
|||
|
||||
Period= 5*1000, /* period of retransmit process (in ms) */
|
||||
Timeout= 20, /* xmit timeout (in Periods) */
|
||||
Echotimeout= 2, /* echo timeout (in Periods) */
|
||||
Echotimeout= 5, /* echo timeout (in Periods) */
|
||||
Buflen= 4096,
|
||||
|
||||
MAX_STATES= 16, /* van jacobson compression states */
|
||||
|
|
Loading…
Reference in a new issue