Add support for [read|write] supported data length commands.

Fix ng_hci_le_long_term_key_request_negative_reply_cp struct
while here.

PR:	247809
Submitted by:	Marc Veldman
This commit is contained in:
Takanori Watanabe 2020-07-08 06:33:07 +00:00
parent 2105611236
commit de402d6322
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=363003

View File

@ -1730,12 +1730,27 @@ typedef struct {
#define NG_HCI_OCF_LE_LONG_TERM_KEY_REQUEST_NEGATIVE_REPLY 0x001b
typedef struct{
u_int16_t connection_handle;
}ng_hci_le_long_term_key_request_negative_reply_cp;
}__attribute__((packed)) ng_hci_le_long_term_key_request_negative_reply_cp;
typedef struct {
u_int8_t status;
u_int16_t connection_handle;
}__attribute__ ((packed)) ng_hci_le_long_term_key_request_negative_reply_rp;
#define NG_HCI_OCF_LE_READ_SUGGESTED_DATA_LENGTH 0x0023
/*No command parameter*/
typedef struct {
u_int8_t status;
u_int16_t suggested_max_tx_octets;
u_int16_t suggested_max_tx_time;
}__attribute__ ((packed)) ng_hci_le_read_suggested_data_length_rp;
#define NG_HCI_OCF_LE_WRITE_SUGGESTED_DATA_LENGTH 0x0024
typedef struct {
u_int16_t suggested_max_tx_octets;
u_int16_t suggested_max_tx_time;
}__attribute__ ((packed)) ng_hci_le_write_suggested_data_length_cp;
typedef ng_hci_status_rp ng_hci_le_write_suggested_data_length_rp;
#define NG_HCI_OCF_LE_READ_BUFFER_SIZE_V2 0x0060
/*No command parameter */
typedef struct {