mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-01-03 10:32:33 +01:00
dbus: Add NotConfigured dbus exception
This commit is contained in:
parent
3012623c76
commit
3b6d7e94f8
@ -160,6 +160,12 @@ struct l_dbus_message *dbus_error_not_connected(struct l_dbus_message *msg)
|
||||
"Not connected");
|
||||
}
|
||||
|
||||
struct l_dbus_message *dbus_error_not_configured(struct l_dbus_message *msg)
|
||||
{
|
||||
return l_dbus_message_new_error(msg, IWD_SERVICE ".NotConfigured",
|
||||
"Not configured");
|
||||
}
|
||||
|
||||
struct l_dbus_message *dbus_error_not_implemented(struct l_dbus_message *msg)
|
||||
{
|
||||
return l_dbus_message_new_error(msg, IWD_SERVICE ".NotImplemented",
|
||||
|
@ -64,6 +64,7 @@ struct l_dbus_message *dbus_error_not_found(struct l_dbus_message *msg);
|
||||
struct l_dbus_message *dbus_error_not_supported(struct l_dbus_message *msg);
|
||||
struct l_dbus_message *dbus_error_no_agent(struct l_dbus_message *msg);
|
||||
struct l_dbus_message *dbus_error_not_connected(struct l_dbus_message *msg);
|
||||
struct l_dbus_message *dbus_error_not_configured(struct l_dbus_message *msg);
|
||||
struct l_dbus_message *dbus_error_not_implemented(struct l_dbus_message *msg);
|
||||
|
||||
bool dbus_init(bool enable_debug);
|
||||
|
Loading…
Reference in New Issue
Block a user