summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ppp/vars.c
diff options
context:
space:
mode:
authorbrian <brian@FreeBSD.org>1997-08-17 20:45:50 +0000
committerbrian <brian@FreeBSD.org>1997-08-17 20:45:50 +0000
commit48abae6115c5ac6fba0407b546d3c6e31e7f4192 (patch)
treebfaa38bde7ce619383c5ebf2b70cf87cca128280 /usr.sbin/ppp/vars.c
parent6f340c20e5d94d59afcee4b5d8fbc86d25acd2dd (diff)
downloadFreeBSD-src-48abae6115c5ac6fba0407b546d3c6e31e7f4192.zip
FreeBSD-src-48abae6115c5ac6fba0407b546d3c6e31e7f4192.tar.gz
Allow the use of a "stopped" timeout via the
"set stopped" directive. If the timeout occurs it will cause a "Down" event, hanging up the line if it's still up. This *isn't* part of the FSM diagram, but I consider it ok as a "higher level implementation specific timeout" as specified in the rfc ;-} Discussed briefly with: joerg
Diffstat (limited to 'usr.sbin/ppp/vars.c')
-rw-r--r--usr.sbin/ppp/vars.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ppp/vars.c b/usr.sbin/ppp/vars.c
index 4bfc369..9aba545 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.19 1997/06/09 03:27:41 brian Exp $
+ * $Id: vars.c,v 1.20 1997/06/09 23:38:38 brian Exp $
*
*/
#include "fsm.h"
@@ -30,7 +30,7 @@
#include "defs.h"
char VarVersion[] = "PPP Version 1.00";
-char VarLocalVersion[] = "$Date: 1997/06/09 03:27:41 $";
+char VarLocalVersion[] = "$Date: 1997/06/09 23:38:38 $";
/*
* Order of conf option is important. See vars.h.
@@ -52,7 +52,7 @@ struct confdesc pppConfs[] = {
struct pppvars pppVars = {
DEF_MRU, DEF_MTU, 0, MODEM_SPEED, CS8, MODEM_CTSRTS, 180, 30, 3,
RECONNECT_TIMER, RECONNECT_TRIES, REDIAL_PERIOD,
- NEXT_REDIAL_PERIOD, 1, MODEM_DEV, BASE_MODEM_DEV,
+ NEXT_REDIAL_PERIOD, 1, 0, MODEM_DEV, BASE_MODEM_DEV,
OPEN_ACTIVE, LOCAL_NO_AUTH,0
};
OpenPOWER on IntegriCloud