Hi Francois, On Fri, Sep 2, 2016 at 12:08 PM, Francois Beaufort <beaufort.francois@xxxxxxxxx> wrote: > --- > 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", "<alias>", cmd_set_alias, "Set device alias" }, > { "select-attribute", "<attribute>", cmd_select_attribute, > "Select attribute", attribute_generator }, > { "attribute-info", "[attribute]", cmd_attribute_info, > -- > 2.7.0 Applied, thanks. -- Luiz Augusto von Dentz -- 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