From 881a8bbf54b737d71483ff98db0f247a13cdf31e Mon Sep 17 00:00:00 2001 From: Brian Somers Date: Sun, 7 Sep 1997 01:00:06 +0000 Subject: [PATCH] Disable LQR by default. It causes too many problems with too many ISPs to be a good default. LQR is still accepted by default. --- usr.sbin/ppp/ppp.8 | 4 ++-- usr.sbin/ppp/ppp.8.m4 | 4 ++-- usr.sbin/ppp/vars.c | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/usr.sbin/ppp/ppp.8 b/usr.sbin/ppp/ppp.8 index d4b98103737..f812093a84e 100644 --- a/usr.sbin/ppp/ppp.8 +++ b/usr.sbin/ppp/ppp.8 @@ -1,4 +1,4 @@ -.\" $Id: ppp.8,v 1.60 1997/08/31 20:07:03 brian Exp $ +.\" $Id: ppp.8,v 1.61 1997/09/04 00:38:20 brian Exp $ .Dd 20 September 1995 .Os FreeBSD .Dt PPP 8 @@ -1388,7 +1388,7 @@ Default: Enabled and Accepted. This option decides if Van Jacobson header compression will be used. .It lqr -Default: Enabled and Accepted. This option decides if Link Quality +Default: Disabled and Accepted. This option decides if Link Quality Requests will be sent. LQR is a protocol that allows .Nm to determine that the link is down without relying on the modems diff --git a/usr.sbin/ppp/ppp.8.m4 b/usr.sbin/ppp/ppp.8.m4 index d4b98103737..f812093a84e 100644 --- a/usr.sbin/ppp/ppp.8.m4 +++ b/usr.sbin/ppp/ppp.8.m4 @@ -1,4 +1,4 @@ -.\" $Id: ppp.8,v 1.60 1997/08/31 20:07:03 brian Exp $ +.\" $Id: ppp.8,v 1.61 1997/09/04 00:38:20 brian Exp $ .Dd 20 September 1995 .Os FreeBSD .Dt PPP 8 @@ -1388,7 +1388,7 @@ Default: Enabled and Accepted. This option decides if Van Jacobson header compression will be used. .It lqr -Default: Enabled and Accepted. This option decides if Link Quality +Default: Disabled and Accepted. This option decides if Link Quality Requests will be sent. LQR is a protocol that allows .Nm to determine that the link is down without relying on the modems diff --git a/usr.sbin/ppp/vars.c b/usr.sbin/ppp/vars.c index cda8fb44264..60bfeebe47e 100644 --- a/usr.sbin/ppp/vars.c +++ b/usr.sbin/ppp/vars.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: vars.c,v 1.25 1997/08/25 00:29:31 brian Exp $ + * $Id: vars.c,v 1.26 1997/09/04 00:38:21 brian Exp $ * */ #include "fsm.h" @@ -30,14 +30,14 @@ #include "defs.h" char VarVersion[] = "PPP Version 1.1"; -char VarLocalVersion[] = "$Date: 1997/08/25 00:29:31 $"; +char VarLocalVersion[] = "$Date: 1997/09/04 00:38:21 $"; /* * Order of conf option is important. See vars.h. */ struct confdesc pppConfs[] = { {"vjcomp", CONF_ENABLE, CONF_ACCEPT}, - {"lqr", CONF_ENABLE, CONF_ACCEPT}, + {"lqr", CONF_DISABLE, CONF_ACCEPT}, {"chap", CONF_DISABLE, CONF_ACCEPT}, {"pap", CONF_DISABLE, CONF_ACCEPT}, {"acfcomp", CONF_ENABLE, CONF_ACCEPT},