summaryrefslogtreecommitdiff
path: root/profiles/gap
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2016-09-12 14:49:49 +0300
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2016-09-12 16:30:04 +0300
commitc13720e48caa3a3cd8931afde3f59fad57e2f598 (patch)
tree94bde0a9be60bf24bf93d067d1a5eb18bb5606b3 /profiles/gap
parent6ac8d903ced10f950749498d6bb86d6755a43fb5 (diff)
downloadbluez-c13720e48caa3a3cd8931afde3f59fad57e2f598.tar.gz
gap: Implement disconnect callback
This implements the profile disconnect callback using it to cleanup existing references of bt_gatt_client and gatt_db.
Diffstat (limited to 'profiles/gap')
-rw-r--r--profiles/gap/gas.c29
1 files changed, 23 insertions, 6 deletions
diff --git a/profiles/gap/gas.c b/profiles/gap/gas.c
index 93a9a6d89..2077ed955 100644
--- a/profiles/gap/gas.c
+++ b/profiles/gap/gas.c
@@ -251,6 +251,15 @@ static void foreach_gap_service(struct gatt_db_attribute *attr, void *user_data)
handle_gap_service(gas);
}
+static void gas_reset(struct gas *gas)
+{
+ gas->attr = NULL;
+ gatt_db_unref(gas->db);
+ gas->db = NULL;
+ bt_gatt_client_unref(gas->client);
+ gas->client = NULL;
+}
+
static int gap_driver_accept(struct btd_service *service)
{
struct btd_device *device = btd_service_get_device(service);
@@ -268,11 +277,6 @@ static int gap_driver_accept(struct btd_service *service)
return -1;
}
- /* Clean-up any old client/db and acquire the new ones */
- gas->attr = NULL;
- gatt_db_unref(gas->db);
- bt_gatt_client_unref(gas->client);
-
gas->db = gatt_db_ref(db);
gas->client = bt_gatt_client_ref(client);
@@ -282,6 +286,7 @@ static int gap_driver_accept(struct btd_service *service)
if (!gas->attr) {
error("GAP attribute not found");
+ gas_reset(gas);
return -1;
}
@@ -290,12 +295,24 @@ static int gap_driver_accept(struct btd_service *service)
return 0;
}
+static int gap_disconnect(struct btd_service *service)
+{
+ struct gas *gas = btd_service_get_user_data(service);
+
+ gas_reset(gas);
+
+ btd_service_disconnecting_complete(service, 0);
+
+ return 0;
+}
+
static struct btd_profile gap_profile = {
.name = "gap-profile",
.remote_uuid = GAP_UUID,
.device_probe = gap_driver_probe,
.device_remove = gap_driver_remove,
- .accept = gap_driver_accept
+ .accept = gap_driver_accept,
+ .disconnect = gap_disconnect,
};
static int gap_init(void)