diff options
author | roger <roger@FreeBSD.org> | 2001-03-19 19:47:54 +0000 |
---|---|---|
committer | roger <roger@FreeBSD.org> | 2001-03-19 19:47:54 +0000 |
commit | a093aec8872e13739204127bcbb66b21050cc018 (patch) | |
tree | 7ff79dda7dd0c42d7494c5059c2b52842d3d1eed /usr.sbin/ppp | |
parent | b9bbde2f6f248cc404a4cef00419e474039c65ce (diff) | |
download | FreeBSD-src-a093aec8872e13739204127bcbb66b21050cc018.zip FreeBSD-src-a093aec8872e13739204127bcbb66b21050cc018.tar.gz |
Allow LQR periods of 1 second and FSM retry periods of 1 second. This allows us
to run PPP over Radiocontact T-Link Radio Modems which run best when something
is transmitted at least every 1.5 seconds.
Tested by: Jennifer Clark <jen@telepresence.strath.ac.uk>
Approved by: Brian
Diffstat (limited to 'usr.sbin/ppp')
-rw-r--r-- | usr.sbin/ppp/defs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ppp/defs.h b/usr.sbin/ppp/defs.h index 2e5fb41..9432470 100644 --- a/usr.sbin/ppp/defs.h +++ b/usr.sbin/ppp/defs.h @@ -54,9 +54,9 @@ #define NCP_IDLE_TIMEOUT 180 /* Drop all links */ #define CHOKED_TIMEOUT 120 /* Delete queued packets w/ blocked tun */ -#define MIN_LQRPERIOD 2 /* Minimum LQR frequency */ +#define MIN_LQRPERIOD 1 /* Minimum LQR frequency */ #define DEF_LQRPERIOD 30 /* Default LQR frequency */ -#define MIN_FSMRETRY 3 /* Minimum FSM retry frequency */ +#define MIN_FSMRETRY 1 /* Minimum FSM retry frequency */ #define DEF_FSMRETRY 3 /* FSM retry frequency */ #define DEF_FSMTRIES 5 /* Default max retries */ #define DEF_FSMAUTHTRIES 3 /* Default max auth retries */ |