xref: /dflybsd-src/contrib/wpa_supplicant/src/ap/fils_hlp.h (revision 3a84a4273475ed07d0ab1c2dfeffdfedef35d9cd)
1*a1157835SDaniel Fojt /*
2*a1157835SDaniel Fojt  * FILS HLP request processing
3*a1157835SDaniel Fojt  * Copyright (c) 2017, Qualcomm Atheros, Inc.
4*a1157835SDaniel Fojt  *
5*a1157835SDaniel Fojt  * This software may be distributed under the terms of the BSD license.
6*a1157835SDaniel Fojt  * See README for more details.
7*a1157835SDaniel Fojt  */
8*a1157835SDaniel Fojt 
9*a1157835SDaniel Fojt #ifndef FILS_HLP_H
10*a1157835SDaniel Fojt #define FILS_HLP_H
11*a1157835SDaniel Fojt 
12*a1157835SDaniel Fojt int fils_process_hlp(struct hostapd_data *hapd, struct sta_info *sta,
13*a1157835SDaniel Fojt 		     const u8 *pos, int left);
14*a1157835SDaniel Fojt 
15*a1157835SDaniel Fojt #ifdef CONFIG_FILS
16*a1157835SDaniel Fojt 
17*a1157835SDaniel Fojt void fils_hlp_deinit(struct hostapd_data *hapd);
18*a1157835SDaniel Fojt 
19*a1157835SDaniel Fojt #else /* CONFIG_FILS */
20*a1157835SDaniel Fojt 
fils_hlp_deinit(struct hostapd_data * hapd)21*a1157835SDaniel Fojt static inline void fils_hlp_deinit(struct hostapd_data *hapd)
22*a1157835SDaniel Fojt {
23*a1157835SDaniel Fojt }
24*a1157835SDaniel Fojt 
25*a1157835SDaniel Fojt #endif /* CONFIG_FILS */
26*a1157835SDaniel Fojt 
27*a1157835SDaniel Fojt #endif /* FILS_HLP_H */
28