mgmt: Add bdaddr and status to remove_keys response

This commit is contained in:
Johan Hedberg 2011-11-10 14:04:40 +02:00
parent c9c244d485
commit 60bb8e3586
2 changed files with 6 additions and 1 deletions

View File

@ -189,7 +189,8 @@ Remove Keys Command
Controller Index: <controller id>
Command Parameters: Address (6 Octets)
Disconnect (1 Octet)
Return Parameters:
Return Parameters: Address (6 Octets)
Status (1 Octet)
Removes all keys associated with the remote device.

View File

@ -129,6 +129,10 @@ struct mgmt_cp_remove_keys {
bdaddr_t bdaddr;
uint8_t disconnect;
} __packed;
struct mgmt_rp_remove_keys {
bdaddr_t bdaddr;
uint8_t status;
} __packed;
#define MGMT_OP_DISCONNECT 0x000F
struct mgmt_cp_disconnect {