From a093aec8872e13739204127bcbb66b21050cc018 Mon Sep 17 00:00:00 2001 From: roger Date: Mon, 19 Mar 2001 19:47:54 +0000 Subject: 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 Approved by: Brian --- usr.sbin/ppp/defs.h | 4 ++-- 1 file 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 */ -- cgit v1.1