Return-Path: From: Francois Beaufort To: linux-bluetooth@vger.kernel.org Subject: [PATCH BlueZ] Add device set-alias bluetoothctl command Date: Tue, 20 Sep 2016 15:13:36 +0200 Message-Id: <20160920131337.19494-2-beaufort.francois@gmail.com> In-Reply-To: <20160920131337.19494-1-beaufort.francois@gmail.com> References: <20160920131337.19494-1-beaufort.francois@gmail.com> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: --- client/main.c | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/client/main.c b/client/main.c index 9ba5a40..e1198a8 100644 --- a/client/main.c +++ b/client/main.c @@ -1666,6 +1666,30 @@ static void cmd_list_attributes(const char *arg) gatt_list_attributes(g_dbus_proxy_get_path(proxy)); } +static void cmd_set_alias(const char *arg) +{ + char *name; + + if (!arg || !strlen(arg)) { + rl_printf("Missing name argument\n"); + return; + } + + if (!default_dev) { + rl_printf("No device connected\n"); + return; + } + + name = g_strdup(arg); + + if (g_dbus_proxy_set_property_basic(default_dev, "Alias", + DBUS_TYPE_STRING, &name, + generic_callback, name, g_free) == TRUE) + return; + + g_free(name); +} + static void cmd_select_attribute(const char *arg) { GDBusProxy *proxy; @@ -2105,6 +2129,7 @@ static const struct { dev_generator }, { "list-attributes", "[dev]", cmd_list_attributes, "List attributes", dev_generator }, + { "set-alias", "", cmd_set_alias, "Set device alias" }, { "select-attribute", "", cmd_select_attribute, "Select attribute", attribute_generator }, { "attribute-info", "[attribute]", cmd_attribute_info, -- 2.7.0