Remove BROADCAST flag from faith interface,

-it not seems to be necessary
 -to avoid dhcp messages or something like that sent to faith interface

The problem reported by: Jim Bloom <bloom@acm.org>
This commit is contained in:
Yoshinobu Inoue 2000-01-09 04:35:39 +00:00
parent d0a98d79d2
commit d664bbb749

View File

@ -82,8 +82,8 @@ faithattach(faith)
ifp->if_name = "faith";
ifp->if_unit = i;
ifp->if_mtu = FAITHMTU;
/* Change to BROADCAST experimentaly to announce its prefix. */
ifp->if_flags = /* IFF_LOOPBACK */ IFF_BROADCAST | IFF_MULTICAST;
/* LOOPBACK commented out to announce IPv6 routes to faith */
ifp->if_flags = /* IFF_LOOPBACK | */ IFF_MULTICAST;
ifp->if_ioctl = loioctl;
ifp->if_output = looutput;
ifp->if_type = IFT_FAITH;