From: Bruna Moreira <[email protected]>
Applications that want to be Observers of certain Advertising data type
(e.g. Manufacturer Specific Data or Service Data) will use new Observer
D-Bus API to monitor these AD types. Therefore, the old Broadcaster
device property is unnecessary.
---
doc/adapter-api.txt | 3 +--
src/adapter.c | 7 -------
2 files changed, 1 insertion(+), 9 deletions(-)
diff --git a/doc/adapter-api.txt b/doc/adapter-api.txt
index 5d993cd..23f0a2f 100644
--- a/doc/adapter-api.txt
+++ b/doc/adapter-api.txt
@@ -187,8 +187,7 @@ Signals PropertyChanged(string name, variant value)
The dictionary can contain basically the same values
that are returned by the GetProperties method
from the org.bluez.Device interface. In addition there
- can be values for the RSSI, the TX power level and
- Broadcaster role.
+ can be values for the RSSI and the TX power level.
DeviceDisappeared(string address)
diff --git a/src/adapter.c b/src/adapter.c
index 8820e27..b05a030 100644
--- a/src/adapter.c
+++ b/src/adapter.c
@@ -2688,14 +2688,8 @@ void adapter_emit_device_found(struct btd_adapter *adapter,
alias = g_strdup(dev->alias);
if (dev->bdaddr_type != BDADDR_BREDR) {
- gboolean broadcaster;
uint16_t app;
- if (dev->flags & (EIR_LIM_DISC | EIR_GEN_DISC))
- broadcaster = FALSE;
- else
- broadcaster = TRUE;
-
dev->legacy = FALSE;
if (read_remote_appearance(&adapter->bdaddr, &dev->bdaddr,
@@ -2713,7 +2707,6 @@ void adapter_emit_device_found(struct btd_adapter *adapter,
"Alias", DBUS_TYPE_STRING, &alias,
"LegacyPairing", DBUS_TYPE_BOOLEAN, &dev->legacy,
"Paired", DBUS_TYPE_BOOLEAN, &paired,
- "Broadcaster", DBUS_TYPE_BOOLEAN, &broadcaster,
"UUIDs", DBUS_TYPE_ARRAY, &dev->uuids, uuid_count,
NULL);
} else {
--
1.7.9.5
Hi Bruna,
On Thu, Jul 26, 2012, [email protected] wrote:
> Applications that want to be Observers of certain Advertising data type
> (e.g. Manufacturer Specific Data or Service Data) will use new Observer
> D-Bus API to monitor these AD types. Therefore, the old Broadcaster
> device property is unnecessary.
> ---
> doc/adapter-api.txt | 3 +--
> src/adapter.c | 7 -------
> 2 files changed, 1 insertion(+), 9 deletions(-)
All three patches have been applied. Thanks.
Johan