diff options
author | Johan Hedberg <johan.hedberg@nokia.com> | 2011-01-20 12:34:39 +0200 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-02-08 01:40:07 -0200 |
commit | f7520543ab40341edbc2aeee7fef68218be19a0a (patch) | |
tree | 6f116b5215a134bab6b9615f97767eba040f0683 /include/net/bluetooth/hci_core.h | |
parent | 55ed8ca10f3530de8edbbf138acb50992bf5005b (diff) | |
download | kernel_samsung_tuna-f7520543ab40341edbc2aeee7fef68218be19a0a.zip kernel_samsung_tuna-f7520543ab40341edbc2aeee7fef68218be19a0a.tar.gz kernel_samsung_tuna-f7520543ab40341edbc2aeee7fef68218be19a0a.tar.bz2 |
Bluetooth: Add connected/disconnected management events
This patch adds connected and disconnected managment events to track the
connection status to remote devices. The events map directly to
successful connection complete and disconnection complete HCI events for
ACL links.
Signed-off-by: Johan Hedberg <johan.hedberg@nokia.com>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'include/net/bluetooth/hci_core.h')
-rw-r--r-- | include/net/bluetooth/hci_core.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h index 009fa63..746f8dc 100644 --- a/include/net/bluetooth/hci_core.h +++ b/include/net/bluetooth/hci_core.h @@ -714,6 +714,8 @@ int mgmt_powered(u16 index, u8 powered); int mgmt_discoverable(u16 index, u8 discoverable); int mgmt_connectable(u16 index, u8 connectable); int mgmt_new_key(u16 index, struct link_key *key, u8 old_key_type); +int mgmt_connected(u16 index, bdaddr_t *bdaddr); +int mgmt_disconnected(u16 index, bdaddr_t *bdaddr); /* HCI info for socket */ #define hci_pi(sk) ((struct hci_pinfo *) sk) |