2016-02-17 01:39:28 +01:00
|
|
|
/*
|
|
|
|
* binder interface for wpa_supplicant daemon
|
|
|
|
* Copyright (c) 2004-2016, Jouni Malinen <j@w1.fi>
|
|
|
|
* Copyright (c) 2004-2016, Roshan Pius <rpius@google.com>
|
|
|
|
*
|
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
|
|
|
*/
|
|
|
|
|
2016-07-07 18:48:58 +02:00
|
|
|
#ifndef WPA_SUPPLICANT_BINDER_BINDER_H
|
|
|
|
#define WPA_SUPPLICANT_BINDER_BINDER_H
|
2016-02-17 01:39:28 +01:00
|
|
|
|
|
|
|
#ifdef _cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* _cplusplus */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is the binder RPC interface entry point to the wpa_supplicant core.
|
|
|
|
* This initializes the binder driver & BinderManager instance and then forwards
|
2020-10-18 19:28:23 +02:00
|
|
|
* all the notifications from the supplicant core to the BinderManager.
|
2016-02-17 01:39:28 +01:00
|
|
|
*/
|
|
|
|
struct wpas_binder_priv;
|
|
|
|
struct wpa_global;
|
|
|
|
|
2016-07-07 18:48:58 +02:00
|
|
|
struct wpas_binder_priv *wpas_binder_init(struct wpa_global *global);
|
2016-02-17 01:39:28 +01:00
|
|
|
void wpas_binder_deinit(struct wpas_binder_priv *priv);
|
|
|
|
|
2016-02-17 01:40:06 +01:00
|
|
|
#ifdef CONFIG_CTRL_IFACE_BINDER
|
|
|
|
int wpas_binder_register_interface(struct wpa_supplicant *wpa_s);
|
|
|
|
int wpas_binder_unregister_interface(struct wpa_supplicant *wpa_s);
|
2016-07-07 18:48:58 +02:00
|
|
|
#else /* CONFIG_CTRL_IFACE_BINDER */
|
2016-02-17 01:40:06 +01:00
|
|
|
static inline int wpas_binder_register_interface(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static inline int wpas_binder_unregister_interface(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_CTRL_IFACE_BINDER */
|
|
|
|
|
2016-02-17 01:39:28 +01:00
|
|
|
#ifdef _cplusplus
|
|
|
|
}
|
|
|
|
#endif /* _cplusplus */
|
|
|
|
|
2016-07-07 18:48:58 +02:00
|
|
|
#endif /* WPA_SUPPLICANT_BINDER_BINDER_H */
|