mesh: Handle netkey delete when netkey is not in netkeylist 57/228957/1
authorPrathyusha N <prathyusha.n@samsung.com>
Tue, 24 Mar 2020 19:27:21 +0000 (00:57 +0530)
committerAnupam Roy <anupam.r@samsung.com>
Thu, 26 Mar 2020 10:38:27 +0000 (16:08 +0530)
4.4.1.2.9 of Mesh Profile Bluetooth specification:
When an element receives a Config NetKey Delete message that
identifies a NetKey that is not in the NetKey List, it
responds with Success, because the result of deleting the
key that does not exist in the NetKey List will be the same
as if the key was deleted from the NetKey List.

Change-Id: Ibbf51b1e2cb53480cc77cd44f79ce123241adef3
Signed-off-by: Anupam Roy <anupam.r@samsung.com>
mesh/net.c

index 562138b..b56697d 100644 (file)
@@ -943,7 +943,7 @@ int mesh_net_del_key(struct mesh_net *net, uint16_t idx)
        subnet = l_queue_find(net->subnets, match_key_index,
                                                        L_UINT_TO_PTR(idx));
        if (!subnet)
-               return MESH_STATUS_CANNOT_REMOVE;
+               return MESH_STATUS_SUCCESS;
 
        /* Delete associated app keys */
        appkey_delete_bound_keys(net, idx);