CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2019/10/03 01:32:19
Modified files:
sys/dev/usb : if_umb.c
Log message:
Switch the bpf of umb(4) from DTL_RAW to DTL_LOOP. DTL_RAW is limited to
ip only whereas DTL_LOOP passes the address family of the packet and so
supports more address families.
To make this work umb_decap() prepends the AF to the packet and which is
consumed then by umb_input(). Similar umb_output() sets ph_family in the
mbuf header which is used by umb_start().
OK deraadt@ dlg@