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:
Abel Lucas
2022-10-31 18:20:48 +00:00
parent 65deefdc64
commit 8119bc210c
+3
View File
@@ -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)