All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Updated bluetoothctl command to remove all devices
@ 2016-01-22 14:21 François Beaufort
  0 siblings, 0 replies; only message in thread
From: François Beaufort @ 2016-01-22 14:21 UTC (permalink / raw)
  To: linux-bluetooth

As discussed on IRC, removing all devices will be easier thanks to
"remove *" in bluetoothctl.

---
 client/main.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/client/main.c b/client/main.c
index b695744..1361e80 100644
--- a/client/main.c
+++ b/client/main.c
@@ -1317,6 +1317,7 @@ static void remove_device_setup(DBusMessageIter
*iter, void *user_data)
 static void cmd_remove(const char *arg)
 {
  GDBusProxy *proxy;
+ GList *list;
  char *path;

  if (!arg || !strlen(arg)) {
@@ -1327,6 +1328,14 @@ static void cmd_remove(const char *arg)
  if (check_default_ctrl() == FALSE)
  return;

+ if (strcmp(arg, "*") == 0) {
+ for (list = g_list_first(dev_list); list; list = g_list_next(list)) {
+ GDBusProxy *proxy = list->data;
+ cmd_remove(g_dbus_proxy_get_path(proxy));
+ }
+ return;
+ }
+
  proxy = find_proxy_by_address(dev_list, arg);
  if (!proxy) {
  rl_printf("Device %s not available\n", arg);
-- 
2.7.0

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2016-01-22 14:21 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-22 14:21 [PATCH] Updated bluetoothctl command to remove all devices François Beaufort

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.