diff options
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) \ |