Standardize on a single definition of auth_alg bitfield values
[hostap-gosc2009.git] / wpa_supplicant / sme.h
blobadc133f0f17373e5f4372d9fade75fa2e1e94516
1 /*
2 * wpa_supplicant - SME
3 * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * Alternatively, this software may be distributed under the terms of BSD
10 * license.
12 * See README and COPYING for more details.
15 #ifndef SME_H
16 #define SME_H
18 #ifdef CONFIG_SME
20 void sme_authenticate(struct wpa_supplicant *wpa_s,
21 struct wpa_bss *bss, struct wpa_ssid *ssid);
22 void sme_event_auth(struct wpa_supplicant *wpa_s, union wpa_event_data *data);
23 int sme_update_ft_ies(struct wpa_supplicant *wpa_s, const u8 *md,
24 const u8 *ies, size_t ies_len);
25 void sme_event_assoc_reject(struct wpa_supplicant *wpa_s,
26 union wpa_event_data *data);
27 void sme_event_auth_timed_out(struct wpa_supplicant *wpa_s,
28 union wpa_event_data *data);
29 void sme_event_assoc_timed_out(struct wpa_supplicant *wpa_s,
30 union wpa_event_data *data);
31 void sme_event_disassoc(struct wpa_supplicant *wpa_s,
32 union wpa_event_data *data);
34 #else /* CONFIG_SME */
36 static inline void sme_authenticate(struct wpa_supplicant *wpa_s,
37 struct wpa_bss *bss,
38 struct wpa_ssid *ssid)
42 static inline void sme_event_auth(struct wpa_supplicant *wpa_s,
43 union wpa_event_data *data)
47 static inline int sme_update_ft_ies(struct wpa_supplicant *wpa_s, const u8 *md,
48 const u8 *ies, size_t ies_len)
50 return -1;
54 static inline void sme_event_assoc_reject(struct wpa_supplicant *wpa_s,
55 union wpa_event_data *data)
59 static inline void sme_event_auth_timed_out(struct wpa_supplicant *wpa_s,
60 union wpa_event_data *data)
64 static inline void sme_event_assoc_timed_out(struct wpa_supplicant *wpa_s,
65 union wpa_event_data *data)
69 static inline void sme_event_disassoc(struct wpa_supplicant *wpa_s,
70 union wpa_event_data *data)
74 #endif /* CONFIG_SME */
76 #endif /* SME_H */