qcacmn: Fix the FILS params set
Host updates proper FILS param set i.e. username, auth_type and is_fils_connection in the FILS response. Change-Id: I0c30325bc7d620aa286aae0dd299dec9b26219ff CRs-Fixed: 2865060
Этот коммит содержится в:

коммит произвёл
snandini

родитель
ef51b2343f
Коммит
35135ea9a1
@@ -571,15 +571,15 @@ static bool scm_is_fils_config_match(struct scan_filter *filter,
|
||||
data = indication_ie->variable_data;
|
||||
|
||||
if (indication_ie->is_cache_id_present &&
|
||||
(data + CACHE_IDENTIFIER_LEN) < end_ptr)
|
||||
(data + CACHE_IDENTIFIER_LEN) <= end_ptr)
|
||||
data += CACHE_IDENTIFIER_LEN;
|
||||
|
||||
if (indication_ie->is_hessid_present &&
|
||||
(data + HESSID_LEN) < end_ptr)
|
||||
(data + HESSID_LEN) <= end_ptr)
|
||||
data += HESSID_LEN;
|
||||
|
||||
for (i = 1; i <= indication_ie->realm_identifiers_cnt &&
|
||||
(data + REALM_HASH_LEN) < end_ptr; i++) {
|
||||
(data + REALM_HASH_LEN) <= end_ptr; i++) {
|
||||
if (!qdf_mem_cmp(filter->fils_scan_filter.fils_realm,
|
||||
data, REALM_HASH_LEN))
|
||||
return true;
|
||||
|
Ссылка в новой задаче
Block a user