summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2019-02-12 13:38:46 +0200
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2019-02-13 17:09:13 +0200
commit40ebc70dae281ff904af29d196f85befee9e03cd (patch)
tree23f8ed91461fb09bef37bfa9a077b77eec777c39 /client
parent8ba5b4fb214222c52cd1cbb01296f3dc3276a56a (diff)
downloadbluez-40ebc70dae281ff904af29d196f85befee9e03cd.tar.gz
client: Remove cloned services if the proxy is removed
This unregister the cloned services if the proxy is removed since they would no longer be accessible.
Diffstat (limited to 'client')
-rw-r--r--client/gatt.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/client/gatt.c b/client/gatt.c
index 719ce34ab..b24ebdc61 100644
--- a/client/gatt.c
+++ b/client/gatt.c
@@ -202,8 +202,25 @@ void gatt_add_service(GDBusProxy *proxy)
print_service_proxy(proxy, COLORED_NEW);
}
+static struct service *remove_service_by_proxy(struct GDBusProxy *proxy)
+{
+ GList *l;
+
+ for (l = local_services; l; l = g_list_next(l)) {
+ struct service *service = l->data;
+
+ if (service->proxy == proxy) {
+ local_services = g_list_delete_link(local_services, l);
+ return service;
+ }
+ }
+
+ return NULL;
+}
+
void gatt_remove_service(GDBusProxy *proxy)
{
+ struct service *service;
GList *l;
l = g_list_find(services, proxy);
@@ -213,6 +230,11 @@ void gatt_remove_service(GDBusProxy *proxy)
services = g_list_delete_link(services, l);
print_service_proxy(proxy, COLORED_DEL);
+
+ service = remove_service_by_proxy(proxy);
+ if (service)
+ g_dbus_unregister_interface(service->conn, service->path,
+ SERVICE_INTERFACE);
}
static void print_chrc(struct chrc *chrc, const char *description)