summaryrefslogtreecommitdiffstats
path: root/network/error.c
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.dentz@openbossa.org>2007-03-27 21:30:35 +0000
committerLuiz Augusto von Dentz <luiz.dentz@openbossa.org>2007-03-27 21:30:35 +0000
commit580d52c4b07c5e44b17e7d0189e7d84f4a7667fb (patch)
treee73bd6f478c4553f745191ef00e4b849aa47981c /network/error.c
parent9691f47c9f858b4ae512e6d3b78bd1bb398bec06 (diff)
Add err_not_supported.
Diffstat (limited to 'network/error.c')
-rw-r--r--network/error.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/network/error.c b/network/error.c
index 87829dea..684bda2a 100644
--- a/network/error.c
+++ b/network/error.c
@@ -70,3 +70,11 @@ DBusHandlerResult err_invalid_args(DBusConnection *conn,
dbus_message_new_error(msg,
NETWORK_ERROR_INTERFACE ".InvalidArguments", str));
}
+
+DBusHandlerResult err_not_supported(DBusConnection *conn, DBusMessage *msg)
+{
+ return send_message_and_unref(conn,
+ dbus_message_new_error(msg,
+ NETWORK_ERROR_INTERFACE ".NotSupported",
+ "The service is not supported by the remote device"));
+}