From: Mattias A. <mat...@us...> - 2001-03-30 09:44:17
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- l2cap.h 1.36 1.37=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: * modified echo / info functions * added result param in l2cap_config_rsp The diff of the modified file(s): --- l2cap.h 2001/03/02 10:55:03 1.36 +++ l2cap.h 2001/03/30 09:44:15 1.37 @@ -80,7 +80,7 @@ #define MIN_DYNAMIC_PSM 0x1001 #define MAX_DYNAMIC_PSM 0xFFFF =20 -/* Result in respones in L2CAP */ +/* Result in responses in L2CAP */ #define RES_SUCCESS 0x0 #define RES_PENDING 0x01 #define RES_PSMNEG 0x02 @@ -338,12 +338,17 @@ u16 link_timeout); =20 s32 l2cap_config_rsp(l2cap_con* con, u32 out_mtu,=20 - flow *in_flow); + flow *in_flow, s32 result); =20 s32 l2cap_disconnect_req(l2cap_con *con); =20 s32 l2cap_disconnect_rsp(l2cap_con* con); =20 +s32 l2cap_echo_rsp(s32 hci_hdl, s32 id, u8 *opt_data, u16 opt_len); + +s32 l2cap_info_rsp(s32 hci_hdl, s32 id, u16 info_type, u8 *info_data,=20 + s32 info_len, s32 result); + /*******************************************************************/ /* (E3) Data from peers */ /************************/ @@ -368,15 +373,12 @@ s32 l2ca_disconnect_req(l2cap_con *con); s32 l2ca_disconnect_rsp(l2cap_con *con); =20 -s32 l2ca_ping(BD_ADDR bd); -s32 l2cap_echo_req(l2cap_con *con, u8 *opt_data, s32 opt_len); +s32 l2ca_ping(BD_ADDR bd, u8 *opt_data, u16 len); +s32 l2cap_echo_req(l2cap_con *con, u8 *opt_data, u16 opt_len); =20 =20 s32 l2ca_getinfo(BD_ADDR bd, u16 infotype); s32 l2cap_info_req(l2cap_con *con, u16 info_type); -s32 l2cap_info_rsp(s32 hci_hdl, s32 id, u16 info_type, u8 *info_data,=20 - s32 info_len, s32 result); - =20 /**************************************************************/ /* (E5) Timer events */ @@ -432,8 +434,6 @@ =20 /* FIXME */ void l2ca_qos_violation_ind(l2cap_con *con); - -void l2ca_ping_rsp(u8* data, u32 len, BD_ADDR remote_bd); =20 int l2ca_opened(l2cap_con *con); =20 |
From: Peter K. <pk...@us...> - 2001-09-12 12:12:31
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- l2cap.h 1.39 1.40=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Improved the calculation of the number of active connections. The diff of the modified file(s): --- l2cap.h 2001/08/17 09:19:00 1.39 +++ l2cap.h 2001/09/12 12:12:30 1.40 @@ -307,7 +307,7 @@ /****************************/ =20 /* Confirms the request to establish a lower layer (baseband) connection*/ -void lp_connect_cfm(u8 *bd_addr, u32 status, u16 con_hdl); +s32 lp_connect_cfm(u8 *bd_addr, u32 status, u16 con_hdl); =20 /* Indicates the lower protocol has successfully established connection */ void lp_connect_ind(BD_ADDR bd_addr); @@ -316,7 +316,7 @@ void l2cap_create_con(BD_ADDR bd); =20 /* Indicates the baseband has been shutdown */ -void lp_disconnect_ind(u32 con_hdl); +s32 lp_disconnect_ind(u32 con_hdl); =20 /* FIXME - lp_qos_cfm() */ /* FIXME - lp_qos_violation_ind() */ |
From: Anders J. <and...@us...> - 2002-01-09 10:07:36
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- l2cap.h 1.42 1.43=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: * Changed PSM of BNEP from 0x09 -> 0x0f according to the specifications. The diff of the modified file(s): --- l2cap.h 2001/12/04 10:01:27 1.42 +++ l2cap.h 2002/01/09 10:07:35 1.43 @@ -69,10 +69,10 @@ =20 /* Valid PSM values */ #define MAX_PSM 20 -#define SDP_LAYER 1 -#define RFCOMM_LAYER 3 -#define TCS_LAYER 5 -#define BNEP_LAYER 9 +#define SDP_LAYER 0x01 +#define RFCOMM_LAYER 0x03 +#define TCS_LAYER 0x05 +#define BNEP_LAYER 0x0f =20 #define L2CAP_TEST_LAYER 0x1231 #define L2CAP_TEST2_LAYER 0x1233 |
From: Anders J. <and...@us...> - 2002-02-25 14:09:07
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- l2cap.h 1.43 1.44=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: * Added l2ca_conf_done. The diff of the modified file(s): --- l2cap.h 9 Jan 2002 10:07:35 -0000 1.43 +++ l2cap.h 25 Feb 2002 14:09:05 -0000 1.44 @@ -429,11 +429,13 @@ /* FIXME */ void l2ca_qos_violation_ind(l2cap_con *con); =20 -int l2ca_opened(l2cap_con *con); +s32 l2ca_opened(l2cap_con *con); =20 -int l2ca_remote_conf_done(l2cap_con *con); +s32 l2ca_remote_conf_done(l2cap_con *con); =20 -int l2ca_local_conf_done(l2cap_con *con); +s32 l2ca_local_conf_done(l2cap_con *con); + +s32 l2ca_conf_done(l2cap_con *con); =20 =20 /*******************************************************************/ |