blob: 69fb3566e0051eefce523c9f0770eb90119e9dad [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * hostapd - Authenticator for IEEE 802.11i RSN pre-authentication
3 * Copyright (c) 2004-2005, Jouni Malinen <j@w1.fi>
4 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007 */
8
9#ifndef PREAUTH_H
10#define PREAUTH_H
11
12#ifdef CONFIG_RSN_PREAUTH
13
14int rsn_preauth_iface_init(struct hostapd_data *hapd);
15void rsn_preauth_iface_deinit(struct hostapd_data *hapd);
16void rsn_preauth_finished(struct hostapd_data *hapd, struct sta_info *sta,
17 int success);
18void rsn_preauth_send(struct hostapd_data *hapd, struct sta_info *sta,
19 u8 *buf, size_t len);
20void rsn_preauth_free_station(struct hostapd_data *hapd, struct sta_info *sta);
21
22#else /* CONFIG_RSN_PREAUTH */
23
24static inline int rsn_preauth_iface_init(struct hostapd_data *hapd)
25{
26 return 0;
27}
28
29static inline void rsn_preauth_iface_deinit(struct hostapd_data *hapd)
30{
31}
32
33static inline void rsn_preauth_finished(struct hostapd_data *hapd,
34 struct sta_info *sta,
35 int success)
36{
37}
38
39static inline void rsn_preauth_send(struct hostapd_data *hapd,
40 struct sta_info *sta,
41 u8 *buf, size_t len)
42{
43}
44
45static inline void rsn_preauth_free_station(struct hostapd_data *hapd,
46 struct sta_info *sta)
47{
48}
49
50#endif /* CONFIG_RSN_PREAUTH */
51
52#endif /* PREAUTH_H */