summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorNiraj Kumar Goit <niraj.g@samsung.com>2018-12-24 17:50:27 +0530
committerJaehyun Kim <jeik01.kim@samsung.com>2019-06-11 07:12:49 +0000
commit79b0d466b91dc6b5e0038d3ce5934912392be4b8 (patch)
treedf8ec92e7cafd35e2deabf4aed08ad85924f74ce /plugins
parent52770f14eb36bd8b4f587d67ae66a44a2d276921 (diff)
downloadconnman-79b0d466b91dc6b5e0038d3ce5934912392be4b8.tar.gz
connman-79b0d466b91dc6b5e0038d3ce5934912392be4b8.tar.bz2
connman-79b0d466b91dc6b5e0038d3ce5934912392be4b8.zip
Added support to get maximum scan SSIDs.
Added support to get Max number of SSIDs scan supported by wlan chipset. Change-Id: If4cbc07f6937718fab123600a962179b3adbc081 Signed-off-by: Niraj Kumar Goit <niraj.g@samsung.com>
Diffstat (limited to 'plugins')
-rw-r--r--plugins/wifi.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/wifi.c b/plugins/wifi.c
index dfcff59c..f1766534 100644
--- a/plugins/wifi.c
+++ b/plugins/wifi.c
@@ -3633,6 +3633,9 @@ static void interface_added(GSupplicantInterface *interface)
connman_device_set_powered(wifi->device, true);
#if defined TIZEN_EXT
connman_techonology_wifi_set_5ghz_supported(wifi_technology, is_5_0_ghz_supported);
+ /* Max number of SSIDs supported by wlan chipset that can be scanned */
+ int max_scan_ssids = g_supplicant_interface_get_max_scan_ssids(interface);
+ connman_techonology_set_max_scan_ssids(wifi_technology, max_scan_ssids);
#endif
}