wpa_auth_glue.h revision 214501
1214501Srpaulo/*
2214501Srpaulo * hostapd / WPA authenticator glue code
3214501Srpaulo * Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi>
4214501Srpaulo *
5214501Srpaulo * This program is free software; you can redistribute it and/or modify
6214501Srpaulo * it under the terms of the GNU General Public License version 2 as
7214501Srpaulo * published by the Free Software Foundation.
8214501Srpaulo *
9214501Srpaulo * Alternatively, this software may be distributed under the terms of BSD
10214501Srpaulo * license.
11214501Srpaulo *
12214501Srpaulo * See README and COPYING for more details.
13214501Srpaulo */
14214501Srpaulo
15214501Srpaulo#ifndef WPA_AUTH_GLUE_H
16214501Srpaulo#define WPA_AUTH_GLUE_H
17214501Srpaulo
18214501Srpauloint hostapd_setup_wpa(struct hostapd_data *hapd);
19214501Srpaulovoid hostapd_reconfig_wpa(struct hostapd_data *hapd);
20214501Srpaulovoid hostapd_deinit_wpa(struct hostapd_data *hapd);
21214501Srpaulo
22214501Srpaulo#endif /* WPA_AUTH_GLUE_H */
23