[PATCH] Updated bluetoothctl command to remove all devices

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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
--
To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [Bluez Devel]     [Linux Wireless Networking]     [Linux Wireless Personal Area Networking]     [Linux ATH6KL]     [Linux USB Devel]     [Linux Media Drivers]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Big List of Linux Books]

  Powered by Linux