diff options
author | brian <brian@FreeBSD.org> | 1997-04-14 23:48:20 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 1997-04-14 23:48:20 +0000 |
commit | aebb5d896e369a2c36a4602db4912e3242a873cb (patch) | |
tree | 1368af077c877d79f95a7b9f976e3af37d0df247 /usr.sbin/ppp/defs.h | |
parent | 387d65afaacec6f13404bfd4fd8e0f0d8ca76eef (diff) | |
download | FreeBSD-src-aebb5d896e369a2c36a4602db4912e3242a873cb.zip FreeBSD-src-aebb5d896e369a2c36a4602db4912e3242a873cb.tar.gz |
Make the next number redial ability configurable. The
"set redial pause [times]" command becomes
"set redial end-pause[.next-pause] [times]" and next-pause
defaults to 3 seconds. This keeps things backwards
compatable.
Suggested by: ache
Diffstat (limited to 'usr.sbin/ppp/defs.h')
-rw-r--r-- | usr.sbin/ppp/defs.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.sbin/ppp/defs.h b/usr.sbin/ppp/defs.h index f08b276..5a9533f 100644 --- a/usr.sbin/ppp/defs.h +++ b/usr.sbin/ppp/defs.h @@ -15,7 +15,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id$ + * $Id: defs.h,v 1.10 1997/02/22 16:10:10 peter Exp $ * * TODO: */ @@ -45,8 +45,9 @@ #define MODEM_SPEED B38400 /* tty speed */ #define SERVER_PORT 3000 /* Base server port no. */ -#define MODEM_CTSRTS TRUE /* Default (true): use CTS/RTS signals */ -#define REDIAL_PERIOD 30 /* Default Hold time to redial */ +#define MODEM_CTSRTS TRUE /* Default (true): use CTS/RTS signals */ +#define REDIAL_PERIOD 30 /* Default Hold time to redial */ +#define NEXT_REDIAL_PERIOD 3 /* Default Hold time to next number redial */ #define CONFFILE "ppp.conf" #define LINKFILE "ppp.linkup" |