mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-01-09 16:42:33 +01:00
dbus: Add error msg for the service set overlap
The intended usage of this error is to notify a client application about the presence of the multiple overlapping network sessions.
This commit is contained in:
parent
5446389d32
commit
48b7ed1e47
@ -172,6 +172,13 @@ struct l_dbus_message *dbus_error_not_implemented(struct l_dbus_message *msg)
|
|||||||
"Not implemented");
|
"Not implemented");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct l_dbus_message *dbus_error_service_set_overlap(
|
||||||
|
struct l_dbus_message *msg)
|
||||||
|
{
|
||||||
|
return l_dbus_message_new_error(msg, IWD_SERVICE ".ServiceSetOverlap",
|
||||||
|
"Service set overlap");
|
||||||
|
}
|
||||||
|
|
||||||
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)
|
||||||
{
|
{
|
||||||
|
@ -66,6 +66,8 @@ 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_configured(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);
|
struct l_dbus_message *dbus_error_not_implemented(struct l_dbus_message *msg);
|
||||||
|
struct l_dbus_message *dbus_error_service_set_overlap(
|
||||||
|
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