From 263a0e79cc4756de756f7812ae9239dfee01b6f5 Mon Sep 17 00:00:00 2001 From: brian Date: Thu, 21 Aug 1997 16:21:39 +0000 Subject: Add "set loopback on|off", defaulting to "on". This tells ppp to loopback packets addressed to the ppp interface IP coming *from* the tun device. This means that you can ping the tun interface IP from inside :-) --- usr.sbin/ppp/vars.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.sbin/ppp/vars.c') diff --git a/usr.sbin/ppp/vars.c b/usr.sbin/ppp/vars.c index 4b0b375..95434fd 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.21 1997/08/17 20:45:49 brian Exp $ + * $Id: vars.c,v 1.22 1997/08/20 23:47:52 brian Exp $ * */ #include "fsm.h" @@ -30,7 +30,7 @@ #include "defs.h" char VarVersion[] = "PPP Version 1.00"; -char VarLocalVersion[] = "$Date: 1997/08/17 20:45:49 $"; +char VarLocalVersion[] = "$Date: 1997/08/20 23:47:52 $"; /* * 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, 1, MODEM_DEV, BASE_MODEM_DEV, OPEN_ACTIVE, LOCAL_NO_AUTH,0 }; -- cgit v1.1