5 * Copyright (C) 2007-2010 Intel Corporation. All rights reserved.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28 #define CONNMAN_API_SUBJECT_TO_CHANGE
29 #include <connman/plugin.h>
30 #include <connman/dbus.h>
32 static const GDBusSecurityTable polkit_security[] = {
33 { CONNMAN_PRIVILEGE_MODIFY, "org.moblin.connman.modify",
34 G_DBUS_SECURITY_FLAG_BUILTIN |
35 G_DBUS_SECURITY_FLAG_ALLOW_INTERACTION },
36 { CONNMAN_PRIVILEGE_SECRET, "org.moblin.connman.secret",
37 G_DBUS_SECURITY_FLAG_BUILTIN |
38 G_DBUS_SECURITY_FLAG_ALLOW_INTERACTION },
42 static int polkit_init(void)
44 g_dbus_register_security(polkit_security);
49 static void polkit_exit(void)
51 g_dbus_unregister_security(polkit_security);
54 CONNMAN_PLUGIN_DEFINE(polkit, "PolicyKit authorization plugin", VERSION,
55 CONNMAN_PLUGIN_PRIORITY_DEFAULT, polkit_init, polkit_exit)