@@ -550,6 +550,15 @@ const uint8_t *hciemu_client_bdaddr(struct hciemu_client *client)
return btdev_get_bdaddr(client->dev);
}
+bool hciemu_set_client_bdaddr(struct hciemu_client *client,
+ const uint8_t *bdaddr)
+{
+ if (!client)
+ return NULL;
+
+ return btdev_set_bdaddr(client->dev, bdaddr);
+}
+
const uint8_t *hciemu_get_client_bdaddr(struct hciemu *hciemu)
{
struct hciemu_client *client;
@@ -39,6 +39,8 @@ void hciemu_unref(struct hciemu *hciemu);
struct hciemu_client *hciemu_get_client(struct hciemu *hciemu, int num);
struct bthost *hciemu_client_host(struct hciemu_client *client);
const uint8_t *hciemu_client_bdaddr(struct hciemu_client *client);
+bool hciemu_set_client_bdaddr(struct hciemu_client *client,
+ const uint8_t *bdaddr);
typedef void (*hciemu_debug_func_t)(const char *str, void *user_data);
typedef void (*hciemu_destroy_func_t)(void *user_data);