mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 16:58:41 -05:00
fe1d0771f7
Restructure the binder related makefile sections to expose a separate |libwpa_binder_interface| which can be imported by clients/tests. While there, Change the name of the binder service to the name used in the selinux permissions. Signed-off-by: Roshan Pius <rpius@google.com>
19 lines
489 B
C++
19 lines
489 B
C++
/*
|
|
* 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.
|
|
*/
|
|
|
|
#include "binder_constants.h"
|
|
|
|
namespace wpa_supplicant_binder {
|
|
namespace binder_constants {
|
|
|
|
const char kServiceName[] = "wpa_supplicant";
|
|
|
|
} /* namespace binder_constants */
|
|
} /* namespace wpa_supplicant_binder */
|