Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

dbus_common_i.h 823B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * wpa_supplicant D-Bus control interface - internal definitions
  3. * Copyright (c) 2006, Dan Williams <dcbw@redhat.com> and Red Hat, Inc.
  4. * Copyright (c) 2009, Witold Sowa <witold.sowa@gmail.com>
  5. * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
  6. *
  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.
  10. *
  11. * Alternatively, this software may be distributed under the terms of BSD
  12. * license.
  13. *
  14. * See README and COPYING for more details.
  15. */
  16. #ifndef DBUS_COMMON_I_H
  17. #define DBUS_COMMON_I_H
  18. #include <dbus/dbus.h>
  19. struct wpas_dbus_priv {
  20. DBusConnection *con;
  21. int should_dispatch;
  22. struct wpa_global *global;
  23. u32 next_objid;
  24. int dbus_new_initialized;
  25. };
  26. #endif /* DBUS_COMMON_I_H */