5 * Copyright (C) 2007-2009 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
22 #include <dbus/dbus.h>
24 #define SUPPLICANT_SERVICE "fi.w1.wpa_supplicant1"
25 #define SUPPLICANT_INTERFACE "fi.w1.wpa_supplicant1"
26 #define SUPPLICANT_PATH "/fi/w1/wpa_supplicant1"
28 typedef void (* supplicant_dbus_array_function) (DBusMessageIter *iter,
31 typedef void (* supplicant_dbus_property_function) (const char *key,
32 DBusMessageIter *iter, void *user_data);
34 typedef void (* supplicant_dbus_value_function) (DBusMessageIter *iter,
37 void supplicant_dbus_setup(DBusConnection *conn);
39 void supplicant_dbus_array_foreach(DBusMessageIter *iter,
40 supplicant_dbus_array_function function,
43 void supplicant_dbus_property_foreach(DBusMessageIter *iter,
44 supplicant_dbus_property_function function,
47 int supplicant_dbus_property_get_all(const char *path, const char *interface,
48 supplicant_dbus_property_function function,
51 int supplicant_dbus_property_set(const char *path, const char *interface,
52 const char *key, const char *signature,
53 supplicant_dbus_value_function function,