This connection will be used by reporter GATT sub-profiles. --- proximity/reporter.c | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/proximity/reporter.c b/proximity/reporter.c index bbb97ea..c5a3bb8 100644 --- a/proximity/reporter.c +++ b/proximity/reporter.c @@ -52,6 +52,8 @@ enum { HIGH_ALERT = 0x02, }; +static DBusConnection *connection; + static void register_link_loss(struct btd_adapter *adapter) { uint16_t start_handle, h; @@ -179,6 +181,9 @@ int reporter_init(struct btd_adapter *adapter) return -ENOTSUP; } + connection = dbus_bus_get(DBUS_BUS_SYSTEM, NULL); + if (connection == NULL) + return -EIO; DBG("Proximity Reporter for adapter %p", adapter); register_link_loss(adapter); @@ -190,4 +195,5 @@ int reporter_init(struct btd_adapter *adapter) void reporter_exit(struct btd_adapter *adapter) { + dbus_connection_unref(connection); } -- 1.7.5.4 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html