|
From: Fredrik S. <fre...@us...> - 2001-12-04 10:01:27
|
The following files were modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- btcommon.h 1.90 1.91=20=20=20=20=20=20=20=20=20=20=20=20 btdebug.h 1.42 1.43=20=20=20=20=20=20=20=20=20=20=20=20 l2cap.h 1.41 1.42=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Added defines for BNEP. The diff of the modified file(s): --- btcommon.h 2001/11/22 14:06:20 1.90 +++ btcommon.h 2001/12/04 10:01:27 1.91 @@ -159,6 +159,12 @@ /* Link Policy Commands */ #define HCISWITCHROLE _IOW(BT_IOC_MAGIC, 0x28, u8[7]) =20 +/* BNEP Control Commands */ +#define BNEPCONNECT _IOW(BT_IOC_MAGIC, 0x29, u8[6]) +#define BNEPTEST _IOW(BT_IOC_MAGIC, 0x2a, u8[5]) +#define BNEPADDPROTOCOLFILTER _IOW(BT_IOC_MAGIC, 0x2b, u32[2]) +#define BNEPADDMULTICASTFILTER _IOW(BT_IOC_MAGIC, 0x2c, u32[2]) + /* Host Controller & Baseband Commands */ #define HCIRESET _IO(BT_IOC_MAGIC, 0x30) #define HCIFLUSH _IO(BT_IOC_MAGIC, 0x31) @@ -183,6 +189,7 @@ #define HCIREADLOCALBDADDR _IOR(BT_IOC_MAGIC, 0x45, u8[6]) =20 /* Status Parameters */ +#define HCIREADRSSI _IOWR(BT_IOC_MAGIC, 0x50, u32) =20 /* Testing Commands */ #define HCIENABLEDUT _IO(BT_IOC_MAGIC, 0x65) --- btdebug.h 2001/11/15 11:18:14 1.42 +++ btdebug.h 2001/12/04 10:01:27 1.43 @@ -168,6 +168,15 @@ #define TCS_PRINT_DATA 0 #define TCS_DEBUG_REC 0 =20 +/***************** BNEP Debug defines ************************************= ***/ + +#define BNEP_DEBUG_MISC 0 +#define BNEP_DEBUG_XMIT 0 +#define BNEP_PRINT_DATA 0 +#define BNEP_DEBUG_REC 0 +#define BNEP_DEBUG_PROC 0 +#define BNEP_DBG_STR " BNEP " + /***************** BTMEM Debug defines ***********************************= ****/ =20 #define BTMEM_DEBUG 0 --- l2cap.h 2001/10/22 12:57:13 1.41 +++ l2cap.h 2001/12/04 10:01:27 1.42 @@ -68,10 +68,11 @@ #define MAX_CMD_ID 255 =20 /* Valid PSM values */ -#define MAX_PSM 8 +#define MAX_PSM 20 #define SDP_LAYER 1 #define RFCOMM_LAYER 3 #define TCS_LAYER 5 +#define BNEP_LAYER 9 =20 #define L2CAP_TEST_LAYER 0x1231 #define L2CAP_TEST2_LAYER 0x1233 |