From: Paul Mackerras Date: Thu, 17 Aug 1995 11:57:12 +0000 (+0000) Subject: Allow proxyarp and defaultroute by default. X-Git-Tag: RELEASE_2_3_6~617 X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=82a7c1976f06040acf5c61ef379bb40cbd3d80ec;hp=bc45bd7903b4439e920bc2095b7543dc768f7ff8 Allow proxyarp and defaultroute by default. --- diff --git a/pppd/ipcp.c b/pppd/ipcp.c index 3d99235..2566fc8 100644 --- a/pppd/ipcp.c +++ b/pppd/ipcp.c @@ -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.21 1995/08/17 11:57:12 paulus Exp $"; #endif /* @@ -149,6 +149,13 @@ ipcp_init(unit) ao->neg_vj = 1; ao->maxslotindex = MAX_STATES - 1; ao->cflag = 1; + + /* + * XXX These control whether the user may use the proxyarp + * and defaultroute options. + */ + ao->proxy_arp = 1; + ao->default_route = 1; }