diff options
author | Alexander Yurchenko <grange@cvs.openbsd.org> | 2005-01-14 12:04:03 +0000 |
---|---|---|
committer | Alexander Yurchenko <grange@cvs.openbsd.org> | 2005-01-14 12:04:03 +0000 |
commit | 08b6f0f68c7520cadd2a4adba1c4dffad2359e2f (patch) | |
tree | 70b2599d26f5cece308a5973f4c1a2a08a56776f /sys/net/netisr.h | |
parent | d2732b96fe8c1e1b735763c7ef7627cb35b63780 (diff) |
First step in Bluetooth protocol stack support.
The code is adopted from the FreeBSD netgraph-based Bluetooth
implementation by Maksim Yevmenkin <m_evmenkin@yahoo.com> but
all netgraph glue was replaced with usual BSD network stack
hooks. This is a work in progress. Only HCI layer works for now,
L2CAP and RFCOMM are on the way.
Help in testing from many, ok markus@.
Diffstat (limited to 'sys/net/netisr.h')
-rw-r--r-- | sys/net/netisr.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/net/netisr.h b/sys/net/netisr.h index dd73562477d..a98bc6661c2 100644 --- a/sys/net/netisr.h +++ b/sys/net/netisr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: netisr.h,v 1.20 2004/11/28 23:39:45 canacar Exp $ */ +/* $OpenBSD: netisr.h,v 1.21 2005/01/14 12:04:02 grange Exp $ */ /* $NetBSD: netisr.h,v 1.12 1995/08/12 23:59:24 mycroft Exp $ */ /* @@ -66,6 +66,7 @@ #define NETISR_PPP 28 /* for PPP processing */ #define NETISR_BRIDGE 29 /* for bridge processing */ #define NETISR_PPPOE 30 /* for pppoe processing */ +#define NETISR_BT 31 /* same as AF_BLUETOOTH */ #ifndef _LOCORE #ifdef _KERNEL @@ -83,6 +84,7 @@ void pppintr(void); void ccittintr(void); void bridgeintr(void); void pppoeintr(void); +void btintr(void); #include <dev/rndvar.h> #define schednetisr(anisr) \ |