Disable LQR by default. It causes too many problems

with too many ISPs to be a good default.  LQR is still
accepted by default.
This commit is contained in:
Brian Somers 1997-09-07 01:00:06 +00:00
parent 59c98c07d3
commit 881a8bbf54
3 changed files with 7 additions and 7 deletions

View file

@ -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

View file

@ -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

View file

@ -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},