3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-10-04 02:18:49 +02:00

device: Add Adapter property to D-Bus API

This commit is contained in:
Daniel Wagner 2016-11-02 15:24:31 +01:00 committed by Denis Kenzior
parent 47d158393d
commit d9f2d40f6f

View File

@ -1040,6 +1040,19 @@ static bool device_property_get_state(struct l_dbus *dbus,
return true;
}
static bool device_property_get_adapter(struct l_dbus *dbus,
struct l_dbus_message *message,
struct l_dbus_message_builder *builder,
void *user_data)
{
struct device *device = user_data;
l_dbus_message_builder_append_basic(builder, 'o',
wiphy_get_path(device->wiphy));
return true;
}
static void setup_device_interface(struct l_dbus_interface *interface)
{
l_dbus_interface_method(interface, "Scan", 0,
@ -1064,6 +1077,8 @@ static void setup_device_interface(struct l_dbus_interface *interface)
device_property_get_scanning, NULL);
l_dbus_interface_property(interface, "State", 0, "s",
device_property_get_state, NULL);
l_dbus_interface_property(interface, "Adapter", 0, "o",
device_property_get_adapter, NULL);
}
static bool device_remove_network(const void *key, void *data, void *user_data)