blob: e14a6bf65e04b0c1917b768a5580375ac15b73b7 [file] [log] [blame]
Dmitry Shmidtebd93af2017-02-21 13:40:44 -08001/*
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
12int fils_process_hlp(struct hostapd_data *hapd, struct sta_info *sta,
13 const u8 *pos, int left);
14
15#ifdef CONFIG_FILS
16
17void fils_hlp_deinit(struct hostapd_data *hapd);
18
19#else /* CONFIG_FILS */
20
21static inline void fils_hlp_deinit(struct hostapd_data *hapd)
22{
23}
24
25#endif /* CONFIG_FILS */
26
27#endif /* FILS_HLP_H */