1341618Scy/*
2341618Scy * FILS HLP request processing
3341618Scy * Copyright (c) 2017, Qualcomm Atheros, Inc.
4341618Scy *
5341618Scy * This software may be distributed under the terms of the BSD license.
6341618Scy * See README for more details.
7341618Scy */
8341618Scy
9341618Scy#ifndef FILS_HLP_H
10341618Scy#define FILS_HLP_H
11341618Scy
12341618Scyint fils_process_hlp(struct hostapd_data *hapd, struct sta_info *sta,
13341618Scy		     const u8 *pos, int left);
14341618Scy
15341618Scy#ifdef CONFIG_FILS
16341618Scy
17341618Scyvoid fils_hlp_deinit(struct hostapd_data *hapd);
18341618Scy
19341618Scy#else /* CONFIG_FILS */
20341618Scy
21341618Scystatic inline void fils_hlp_deinit(struct hostapd_data *hapd)
22341618Scy{
23341618Scy}
24341618Scy
25341618Scy#endif /* CONFIG_FILS */
26341618Scy
27341618Scy#endif /* FILS_HLP_H */
28