mirror of
https://github.com/google/bumble.git
synced 2026-05-09 04:08:02 +00:00
device: handle HCI passkey notification event
This commit is contained in:
@@ -2159,6 +2159,15 @@ class Device(CompositeEventEmitter):
|
|||||||
HCI_User_Passkey_Request_Negative_Reply_Command(bd_addr=connection.peer_address)
|
HCI_User_Passkey_Request_Negative_Reply_Command(bd_addr=connection.peer_address)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# [Classic only]
|
||||||
|
@host_event_handler
|
||||||
|
@with_connection_from_address
|
||||||
|
def on_authentication_user_passkey_notification(self, connection, passkey):
|
||||||
|
# Ask what the pairing config should be for this connection
|
||||||
|
pairing_config = self.pairing_config_factory(connection)
|
||||||
|
|
||||||
|
asyncio.create_task(pairing_config.delegate.display_number(passkey))
|
||||||
|
|
||||||
# [Classic only]
|
# [Classic only]
|
||||||
@host_event_handler
|
@host_event_handler
|
||||||
@try_with_connection_from_address
|
@try_with_connection_from_address
|
||||||
|
|||||||
@@ -4875,6 +4875,17 @@ class HCI_Link_Supervision_Timeout_Changed_Event(HCI_Event):
|
|||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
@HCI_Event.event([
|
||||||
|
('bd_addr', Address.parse_address),
|
||||||
|
('passkey', 4)
|
||||||
|
])
|
||||||
|
class HCI_User_Passkey_Notification_Event(HCI_Event):
|
||||||
|
'''
|
||||||
|
See Bluetooth spec @ 7.7.48 User Passkey Notification Event
|
||||||
|
'''
|
||||||
|
|
||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
@HCI_Event.event([
|
@HCI_Event.event([
|
||||||
('bd_addr', Address.parse_address),
|
('bd_addr', Address.parse_address),
|
||||||
|
|||||||
@@ -638,6 +638,9 @@ class Host(EventEmitter):
|
|||||||
def on_hci_user_passkey_request_event(self, event):
|
def on_hci_user_passkey_request_event(self, event):
|
||||||
self.emit('authentication_user_passkey_request', event.bd_addr)
|
self.emit('authentication_user_passkey_request', event.bd_addr)
|
||||||
|
|
||||||
|
def on_hci_user_passkey_notification_event(self, event):
|
||||||
|
self.emit('authentication_user_passkey_notification', event.bd_addr, event.passkey)
|
||||||
|
|
||||||
def on_hci_inquiry_complete_event(self, event):
|
def on_hci_inquiry_complete_event(self, event):
|
||||||
self.emit('inquiry_complete')
|
self.emit('inquiry_complete')
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user