mirror of
https://github.com/opnsense/src.git
synced 2026-04-21 06:07:31 -04:00
Fix if_ntb interface setup to include IFF_MULTICAST.
This allows IPv6 link local addresses (and other IPv6 functionality) to work. PR: 210355 Submitted by: Steve Wahl and David Bright (both at Dell Inc.) Reviewed by: cem, mav Tested by: mav (on Intel hardware) Approved by: re (kib) MFC after: 5 days Sponsored by: Dell Inc. Differential Revision: https://reviews.freebsd.org/D6885
This commit is contained in:
parent
c7239ca41a
commit
ee61689fdf
1 changed files with 1 additions and 1 deletions
|
|
@ -427,7 +427,7 @@ ntb_setup_interface(void)
|
|||
&handlers);
|
||||
ifp->if_init = ntb_net_init;
|
||||
ifp->if_softc = &net_softc;
|
||||
ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX;
|
||||
ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
|
||||
ifp->if_ioctl = ntb_ioctl;
|
||||
ifp->if_start = ntb_start;
|
||||
IFQ_SET_MAXLEN(&ifp->if_snd, IFQ_MAXLEN);
|
||||
|
|
|
|||
Loading…
Reference in a new issue