|
From: Anders J. <and...@us...> - 2004-01-31 02:46:45
|
The following files were modified in linux/include/linux/bluetooth: Name Old version New version Tag Comment ---- ----------- ----------- --- ------- bluetooth.h 1.50 1.51=20=20=20=20=20=20=20=20=20=20=20=20=20=20 btcommon.h 1.105 1.106=20=20=20=20=20=20=20=20=20=20=20=20=20 l2cap.h 1.46 1.47=20=20=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Added lp_connect which is a wrapper around lp_connect_req. Added 2 new IOCTL:s. The diff of the modified file(s): --- bluetooth.h 2003/02/06 15:36:22 1.50 +++ bluetooth.h 2004/01/30 12:04:54 1.51 @@ -104,6 +104,7 @@ s32 bt_sprint_status(u8 *buf); void bt_send_sdp_data_received(u8 line, u8 *data, int len); void bt_reset_phys_hw(void); void bt_handle_hw_error(u8 error); +void bt_secman_notify(s32 status); =20 /* Handles wakeup of failed blocking function calls */ #ifdef __KERNEL__ --- btcommon.h 2004/01/09 15:28:59 1.105 +++ btcommon.h 2004/01/30 12:04:54 1.106 @@ -154,6 +154,7 @@ #define BTDISCONNECT_ALL _IO(BT_IOC_MAGIC, 0x14) #define BTLEDSTATUS _IOW(BT_IOC_MAGIC, 0x15, s32) #define SDPCONNECT _IOW(BT_IOC_MAGIC, 0x16, bt_connection) +#define BBCONNECT _IOW(BT_IOC_MAGIC, 0x17, bt_connection) =20 /* Ioctls executing HCI commands */ =20 @@ -167,6 +168,7 @@ #define HCISETCONNECTION_ENCRYPTION _IOW(BT_IOC_MAGIC, 0x26, u8[7]) #define HCIREMOTENAME_REQUEST _IOW(BT_IOC_MAGIC, 0x27, u8[255]) #define HCIREADCLOCKOFFSET _IOWR(BT_IOC_MAGIC, 0x53, u32) +#define HCIAUTHENTICATION_ENCRYPTION _IOW(BT_IOC_MAGIC, 0x66, u8[6]) =20 /* Link Policy Commands */ #define HCISWITCHROLE _IOW(BT_IOC_MAGIC, 0x28, u8[7]) --- l2cap.h 2003/11/05 15:22:54 1.46 +++ l2cap.h 2004/01/30 12:04:55 1.47 @@ -319,6 +319,8 @@ void l2cap_create_con(BD_ADDR bd, CLASS_ /* Indicates the baseband has been shutdown */ s32 lp_disconnect_ind(u32 con_hdl); =20 +s32 lp_connect(BD_ADDR bd, bt_pincode *pincode); + /* FIXME - lp_qos_cfm() */ /* FIXME - lp_qos_violation_ind() */ =20 |