AARGH!! by default, pppd would no longer allow users to use "proxyarp"

or "defaultroute"...  That's forgivable I guess, but the silly thing
didn't have any way to _enable_ the options either! :-(

This now enables them by default.

Obtained from: ppp-2.3a0
This commit is contained in:
Peter Wemm 1995-11-03 19:06:45 +00:00
parent 8f08f33ed9
commit 042cd119d3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=12044

View File

@ -18,7 +18,7 @@
*/
#ifndef lint
static char rcsid[] = "$Id: ipcp.c,v 1.20 1995/08/10 06:51:04 paulus Exp $";
static char rcsid[] = "$Id: ipcp.c,v 1.4 1995/10/31 21:21:06 peter Exp $";
#endif
/*
@ -149,6 +149,10 @@ ipcp_init(unit)
ao->neg_vj = 1;
ao->maxslotindex = MAX_STATES - 1;
ao->cflag = 1;
/* allow default route and proxyarp */
ao->proxy_arp = 1;
ao->default_route = 1;
}