diff options
author | Jouni Malinen <jouni@qca.qualcomm.com> | 2011-10-04 22:13:22 +0300 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2011-10-16 23:55:34 +0300 |
commit | b02fe7ff32b4dc8079e2f4863af2e0d885994f20 (patch) | |
tree | 0af267dac4b05dff7ef12c9498d43fa940df501c /wpa_supplicant/wpa_supplicant_i.h | |
parent | afc064fe7ae899966f5de28b3f11881b70c7046e (diff) | |
download | external_wpa_supplicant_8_ti-b02fe7ff32b4dc8079e2f4863af2e0d885994f20.zip external_wpa_supplicant_8_ti-b02fe7ff32b4dc8079e2f4863af2e0d885994f20.tar.gz external_wpa_supplicant_8_ti-b02fe7ff32b4dc8079e2f4863af2e0d885994f20.tar.bz2 |
Interworking: Add commands for network selection
This adds the basic mechanism for running through network selection:
scan, ANQP fetch, network selection, and connection. Actual rules for
network selection and the creation of the network block are still
missing, but will be added in separate commits.
Diffstat (limited to 'wpa_supplicant/wpa_supplicant_i.h')
-rw-r--r-- | wpa_supplicant/wpa_supplicant_i.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/wpa_supplicant/wpa_supplicant_i.h b/wpa_supplicant/wpa_supplicant_i.h index ff3addf..b327f4c 100644 --- a/wpa_supplicant/wpa_supplicant_i.h +++ b/wpa_supplicant/wpa_supplicant_i.h @@ -591,7 +591,9 @@ struct wpa_supplicant { struct gas_query *gas; #ifdef CONFIG_INTERWORKING - int fetch_anqp_in_progress; + int fetch_anqp_in_progress:1; + int network_select:1; + int auto_select:1; #endif /* CONFIG_INTERWORKING */ }; |