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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BINDER_I_H
|
|
|
|
#define BINDER_I_H
|
|
|
|
|
|
|
|
#ifdef _cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif // _cplusplus
|
|
|
|
|
2016-07-07 18:48:58 +02:00
|
|
|
struct wpas_binder_priv
|
|
|
|
{
|
2016-02-17 01:39:28 +01:00
|
|
|
int binder_fd;
|
|
|
|
struct wpa_global *global;
|
|
|
|
void *binder_manager;
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef _cplusplus
|
|
|
|
}
|
|
|
|
#endif /* _cplusplus */
|
|
|
|
|
|
|
|
#endif /* BINDER_I_H */
|