Feature Description
To know which adapter is selected / select the right adapter it would be great to be able to access its mac address.
As adapter_info should not be relied on.
Example:
impl Central for Adapter {
async fn adapter_mac(&self) -> Result<BDAddr> {
// Get actual adapter address...
Ok(BDAddr::from("B8:27:EB:7C:51:30"))
}
}
Feature Description
To know which adapter is selected / select the right adapter it would be great to be able to access its mac address.
As
adapter_infoshould not be relied on.Example: