mirror of
https://github.com/opnsense/src.git
synced 2026-07-16 04:22:59 -04:00
USB network (UHSO):
- Correct network interface flags. PR: usb/149039 Submitted by: Fredrik Lindberg Approved by: thompsa (mentor)
This commit is contained in:
parent
3b6f59eeaa
commit
d58bfbb688
1 changed files with 1 additions and 1 deletions
|
|
@ -1560,7 +1560,7 @@ uhso_attach_ifnet(struct uhso_softc *sc, struct usb_interface *iface, int type)
|
|||
ifp->if_init = uhso_if_init;
|
||||
ifp->if_start = uhso_if_start;
|
||||
ifp->if_output = uhso_if_output;
|
||||
ifp->if_flags = 0;
|
||||
ifp->if_flags = IFF_BROADCAST | IFF_MULTICAST | IFF_NOARP;
|
||||
ifp->if_softc = sc;
|
||||
IFQ_SET_MAXLEN(&ifp->if_snd, ifqmaxlen);
|
||||
ifp->if_snd.ifq_drv_maxlen = ifqmaxlen;
|
||||
|
|
|
|||
Loading…
Reference in a new issue