summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2008-08-13 07:47:50 +0200
committerMarcel Holtmann <marcel@holtmann.org>2008-08-13 07:47:50 +0200
commit4f1f10a796d17381a348631bd282828175252250 (patch)
treec2e20a541fce7ee0e35a49fc20f4a91f571f1e5d
parent38ac39ac6d5a2407826f8de6442af4a2bc177c0b (diff)
downloadconnman-4f1f10a796d17381a348631bd282828175252250.tar.gz
connman-4f1f10a796d17381a348631bd282828175252250.tar.bz2
connman-4f1f10a796d17381a348631bd282828175252250.zip
Start consolidating D-Bus errors
-rw-r--r--src/Makefile.am4
-rw-r--r--src/connman.h2
-rw-r--r--src/error.c34
3 files changed, 38 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index ea4a21d5..9c12a8b6 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -11,8 +11,8 @@ DISTCLEANFILES = $(service_DATA)
sbin_PROGRAMS = connmand
-connmand_SOURCES = main.c connman.h log.c plugin.c profile.c element.c \
- security.c storage.c manager.c agent.c rtnl.c
+connmand_SOURCES = main.c connman.h log.c error.c plugin.c profile.c \
+ element.c security.c storage.c manager.c agent.c rtnl.c
connmand_LDADD = @GDBUS_LIBS@ @GLIB_LIBS@ @GMODULE_LIBS@ @GTHREAD_LIBS@
diff --git a/src/connman.h b/src/connman.h
index 19322faf..7bde14e4 100644
--- a/src/connman.h
+++ b/src/connman.h
@@ -27,6 +27,8 @@
#define NM_PATH "/org/freedesktop/NetworkManager"
#define NM_INTERFACE NM_SERVICE
+DBusMessage *__connman_error_permission_denied(DBusMessage *msg);
+
int __connman_storage_init(void);
void __connman_storage_cleanup(void);
diff --git a/src/error.c b/src/error.c
new file mode 100644
index 00000000..627cf3d7
--- /dev/null
+++ b/src/error.c
@@ -0,0 +1,34 @@
+/*
+ *
+ * Connection Manager
+ *
+ * Copyright (C) 2007-2008 Intel Corporation. All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <gdbus.h>
+
+#include "connman.h"
+
+DBusMessage *__connman_error_permission_denied(DBusMessage *msg)
+{
+ return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
+ ".PermissionDenied", NULL);
+}