mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-12-21 11:52:34 +01:00
dbus: Add dbus_error_not_implemented
This commit is contained in:
parent
d0d509d864
commit
50cc76e227
@ -138,6 +138,12 @@ struct l_dbus_message *dbus_error_not_connected(struct l_dbus_message *msg)
|
|||||||
"Not connected");
|
"Not connected");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct l_dbus_message *dbus_error_not_implemented(struct l_dbus_message *msg)
|
||||||
|
{
|
||||||
|
return l_dbus_message_new_error(msg, IWD_SERVICE ".NotImplemented",
|
||||||
|
"Not implemented");
|
||||||
|
}
|
||||||
|
|
||||||
void dbus_pending_reply(struct l_dbus_message **msg,
|
void dbus_pending_reply(struct l_dbus_message **msg,
|
||||||
struct l_dbus_message *reply)
|
struct l_dbus_message *reply)
|
||||||
{
|
{
|
||||||
|
@ -56,6 +56,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_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_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_connected(struct l_dbus_message *msg);
|
||||||
|
struct l_dbus_message *dbus_error_not_implemented(struct l_dbus_message *msg);
|
||||||
|
|
||||||
bool dbus_init(bool enable_debug);
|
bool dbus_init(bool enable_debug);
|
||||||
bool dbus_exit(void);
|
bool dbus_exit(void);
|
||||||
|
Loading…
Reference in New Issue
Block a user