|
@@ -15,6 +15,7 @@
|
|
#include "rsn_supp/wpa.h"
|
|
#include "rsn_supp/wpa.h"
|
|
#include "eap_peer/eap.h"
|
|
#include "eap_peer/eap.h"
|
|
#include "p2p/p2p.h"
|
|
#include "p2p/p2p.h"
|
|
|
|
+#include "fst/fst.h"
|
|
#include "config.h"
|
|
#include "config.h"
|
|
|
|
|
|
|
|
|
|
@@ -2269,6 +2270,7 @@ void wpa_config_free(struct wpa_config *config)
|
|
os_free(config->osu_dir);
|
|
os_free(config->osu_dir);
|
|
os_free(config->bgscan);
|
|
os_free(config->bgscan);
|
|
os_free(config->wowlan_triggers);
|
|
os_free(config->wowlan_triggers);
|
|
|
|
+ os_free(config->fst_group_id);
|
|
os_free(config);
|
|
os_free(config);
|
|
}
|
|
}
|
|
|
|
|
|
@@ -4234,6 +4236,11 @@ static const struct global_parse_data global_fields[] = {
|
|
{ INT(passive_scan), 0 },
|
|
{ INT(passive_scan), 0 },
|
|
{ INT(reassoc_same_bss_optim), 0 },
|
|
{ INT(reassoc_same_bss_optim), 0 },
|
|
{ INT(wps_priority), 0},
|
|
{ INT(wps_priority), 0},
|
|
|
|
+#ifdef CONFIG_FST
|
|
|
|
+ { STR_RANGE(fst_group_id, 1, FST_MAX_GROUP_ID_LEN), 0 },
|
|
|
|
+ { INT_RANGE(fst_priority, 1, FST_MAX_PRIO_VALUE), 0 },
|
|
|
|
+ { INT_RANGE(fst_llt, 1, FST_MAX_LLT_MS), 0 },
|
|
|
|
+#endif /* CONFIG_FST */
|
|
};
|
|
};
|
|
|
|
|
|
#undef FUNC
|
|
#undef FUNC
|