mirror of
https://github.com/google/bumble.git
synced 2026-06-01 07:37:02 +00:00
host: pass remote_host_supported_features event to upper layer
The `HCI_Remote_Name_Request` command may trigger this HCI event. Instead of warn for not being handled, pass it to upper layer.
This commit is contained in:
@@ -648,3 +648,6 @@ class Host(EventEmitter):
|
||||
self.emit('remote_name_failure', event.bd_addr, event.status)
|
||||
else:
|
||||
self.emit('remote_name', event.bd_addr, event.remote_name)
|
||||
|
||||
def on_hci_remote_host_supported_features_notification_event(self, event):
|
||||
self.emit('remote_host_supported_features', event.bd_addr, event.host_supported_features)
|
||||
|
||||
Reference in New Issue
Block a user