diff options
author | Gerhard Roth <gerhard@cvs.openbsd.org> | 2016-06-15 19:39:35 +0000 |
---|---|---|
committer | Gerhard Roth <gerhard@cvs.openbsd.org> | 2016-06-15 19:39:35 +0000 |
commit | 740afea1ba43876bb2284939caee0cbd437c2000 (patch) | |
tree | 02fae890efc1d2c9b307df7c0ece196821fb93d5 /sys/net | |
parent | cc42ca6d7d1d53491a1e00fa64040aec34e1859d (diff) |
Add umb(4) - a driver for the Mobile Broadband Interface Model (MBIM)
The umb(4) driver provides support for USB MBIM devices.
Those devices establish connections via celluar networks such as
GPRS, UMTS, and LTE.
ok mpi@ sthen@
additional feedback from deraadt@ jmc@ stsp@ kettenis@
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/if_types.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/net/if_types.h b/sys/net/if_types.h index 95690cf9dde..dbd9e84a7fe 100644 --- a/sys/net/if_types.h +++ b/sys/net/if_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_types.h,v 1.20 2016/03/07 19:33:26 mmcc Exp $ */ +/* $OpenBSD: if_types.h,v 1.21 2016/06/15 19:39:34 gerhard Exp $ */ /* $NetBSD: if_types.h,v 1.17 2000/10/26 06:51:31 onoe Exp $ */ /* @@ -268,5 +268,6 @@ #define IFT_CARP 0xf7 /* Common Address Redundancy Protocol */ #define IFT_BLUETOOTH 0xf8 /* Bluetooth */ #define IFT_PFLOW 0xf9 /* pflow */ +#define IFT_MBIM 0xfa /* Mobile Broadband Interface Model */ #endif /* _NET_IF_TYPES_H_ */ |