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