xref: /freebsd-src/contrib/wpa/wpa_supplicant/binder/iface.cpp (revision 780fb4a2fa9a9aee5ac48a60b790f567c0dc13e9)
1*780fb4a2SCy Schubert /*
2*780fb4a2SCy Schubert  * binder interface for wpa_supplicant daemon
3*780fb4a2SCy Schubert  * Copyright (c) 2004-2016, Jouni Malinen <j@w1.fi>
4*780fb4a2SCy Schubert  * Copyright (c) 2004-2016, Roshan Pius <rpius@google.com>
5*780fb4a2SCy Schubert  *
6*780fb4a2SCy Schubert  * This software may be distributed under the terms of the BSD license.
7*780fb4a2SCy Schubert  * See README for more details.
8*780fb4a2SCy Schubert  */
9*780fb4a2SCy Schubert 
10*780fb4a2SCy Schubert #include "iface.h"
11*780fb4a2SCy Schubert 
12*780fb4a2SCy Schubert namespace wpa_supplicant_binder {
13*780fb4a2SCy Schubert 
Iface(struct wpa_supplicant * wpa_s)14*780fb4a2SCy Schubert Iface::Iface(struct wpa_supplicant *wpa_s) : wpa_s_(wpa_s) {}
15*780fb4a2SCy Schubert 
16*780fb4a2SCy Schubert } /* namespace wpa_supplicant_binder */
17