]> git.ipfire.org Git - thirdparty/hostap.git/blame - wpa_supplicant/binder/supplicant.cpp
binder: Add binder skeletal code for Android
[thirdparty/hostap.git] / wpa_supplicant / binder / supplicant.cpp
CommitLineData
7b4bbb9f
RP
1/*
2 * binder interface for wpa_supplicant daemon
3 * Copyright (c) 2004-2016, Jouni Malinen <j@w1.fi>
4 * Copyright (c) 2004-2016, Roshan Pius <rpius@google.com>
5 *
6 * This software may be distributed under the terms of the BSD license.
7 * See README for more details.
8 */
9
10#include "supplicant.h"
11
12namespace wpa_supplicant_binder {
13
14Supplicant::Supplicant(struct wpa_global *global)
15 : wpa_global_(global)
16{
17}
18
19} /* namespace wpa_supplicant_binder */