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