00001 /* 00002 * wpa_supplicant D-Bus control interface - internal definitions 00003 * Copyright (c) 2006, Dan Williams <dcbw@redhat.com> and Red Hat, Inc. 00004 * Copyright (c) 2009, Witold Sowa <witold.sowa@gmail.com> 00005 * Copyright (c) 2009, Jouni Malinen <j@w1.fi> 00006 * 00007 * This program is free software; you can redistribute it and/or modify 00008 * it under the terms of the GNU General Public License version 2 as 00009 * published by the Free Software Foundation. 00010 * 00011 * Alternatively, this software may be distributed under the terms of BSD 00012 * license. 00013 * 00014 * See README and COPYING for more details. 00015 */ 00016 00017 #ifndef DBUS_COMMON_I_H 00018 #define DBUS_COMMON_I_H 00019 00020 #include <dbus/dbus.h> 00021 00022 struct wpas_dbus_priv { 00023 DBusConnection *con; 00024 int should_dispatch; 00025 struct wpa_global *global; 00026 u32 next_objid; 00027 int dbus_new_initialized; 00028 }; 00029 00030 #endif /* DBUS_COMMON_I_H */