diff mbox series

[BlueZ,v2,2/3] mesh: Remove unused functions: 'mesh_net_sub_list_add' and 'mesh_net_sub_list_del'

Message ID 20200331120908.23215-3-przemyslaw.fierek@silvair.com (mailing list archive)
State Accepted
Delegated to: Brian Gix
Headers show
Series Add net_idx to 'send_seg' function | expand

Commit Message

Przemysław Fierek March 31, 2020, 12:09 p.m. UTC
---
 mesh/net.c | 27 ---------------------------
 mesh/net.h |  2 --
 2 files changed, 29 deletions(-)
diff mbox series

Patch

diff --git a/mesh/net.c b/mesh/net.c
index 11a9d84a3..5f49034e4 100644
--- a/mesh/net.c
+++ b/mesh/net.c
@@ -2979,33 +2979,6 @@  bool mesh_net_iv_index_update(struct mesh_net *net)
 }
 
 
-
-void mesh_net_sub_list_add(struct mesh_net *net, uint16_t addr)
-{
-	uint8_t msg[11] = { PROXY_OP_FILTER_ADD };
-	uint8_t n = 1;
-
-	l_put_be16(addr, msg + n);
-	n += 2;
-
-	mesh_net_transport_send(net, 0,
-			mesh_net_get_iv_index(net), 0,
-			0, 0, 0, msg, n);
-}
-
-void mesh_net_sub_list_del(struct mesh_net *net, uint16_t addr)
-{
-	uint8_t msg[11] = { PROXY_OP_FILTER_DEL };
-	uint8_t n = 1;
-
-	l_put_be16(addr, msg + n);
-	n += 2;
-
-	mesh_net_transport_send(net, 0,
-			mesh_net_get_iv_index(net), 0,
-			0, 0, 0, msg, n);
-}
-
 bool mesh_net_dst_reg(struct mesh_net *net, uint16_t dst)
 {
 	struct mesh_destination *dest = l_queue_find(net->destinations,
diff --git a/mesh/net.h b/mesh/net.h
index 57585ceff..df4366b59 100644
--- a/mesh/net.h
+++ b/mesh/net.h
@@ -363,8 +363,6 @@  void mesh_net_provisioner_mode_set(struct mesh_net *net, bool mode);
 bool mesh_net_provisioner_mode_get(struct mesh_net *net);
 bool mesh_net_key_list_get(struct mesh_net *net, uint8_t *buf, uint16_t *count);
 uint16_t mesh_net_get_primary_idx(struct mesh_net *net);
-void mesh_net_sub_list_add(struct mesh_net *net, uint16_t addr);
-void mesh_net_sub_list_del(struct mesh_net *net, uint16_t addr);
 uint32_t mesh_net_friend_timeout(struct mesh_net *net, uint16_t addr);
 struct mesh_io *mesh_net_get_io(struct mesh_net *net);
 struct mesh_node *mesh_net_node_get(struct mesh_net *net);