From 7b5f640931e7e7d704ef4438a6cd9b603360d6a0 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Tue, 5 Apr 2022 11:30:07 -0700 Subject: [PATCH] hwsim: add NoVirtualInterface option to DBus API This was available with --no-interface but no such option existed for the DBus API. --- tools/hwsim.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tools/hwsim.c b/tools/hwsim.c index de808074..8dcb75c4 100644 --- a/tools/hwsim.c +++ b/tools/hwsim.c @@ -1707,6 +1707,7 @@ static struct l_dbus_message *radio_manager_create(struct l_dbus *dbus, bool p2p = false; const char *disabled_iftypes = NULL; const char *disabled_ciphers = NULL; + bool no_vif = false; struct radio_info_rec *radio; if (!l_dbus_message_get_arguments(message, "a{sv}", &dict)) @@ -1727,6 +1728,10 @@ static struct l_dbus_message *radio_manager_create(struct l_dbus *dbus, else if (!strcmp(key, "CipherTypeDisable")) ret = l_dbus_message_iter_get_variant(&variant, "s", &disabled_ciphers); + else if (!strcmp(key, "NoVirtualInterface")) + ret = l_dbus_message_iter_get_variant(&variant, "b", + &no_vif); + if (!ret) goto invalid; } @@ -1765,6 +1770,9 @@ static struct l_dbus_message *radio_manager_create(struct l_dbus *dbus, } + if (no_vif) + l_genl_msg_append_attr(new_msg, HWSIM_ATTR_NO_VIF, 0, NULL); + radio = l_new(struct radio_info_rec, 1); radio->pending = l_dbus_message_ref(message); radio->name = l_strdup(name);