diff options
| author | CNSS_WLAN Service <cnssbldsw@qualcomm.com> | 2019-03-11 01:12:37 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2019-03-11 01:12:37 -0700 |
| commit | 2a8d58bb50a06ef6146e5b014c42b301ffeb4ebd (patch) | |
| tree | a69260ac4146b9131b6e36089a1c1b11362a176e | |
| parent | 1c853955563c7323ee92567954b54585ef33f567 (diff) | |
| parent | a55ad29e32840661288e18c4267053287c487b7e (diff) | |
Merge "qcacld-2.0: Disable roaming for OWE" into wlan-cld2.driver.lnx.1.0
| -rw-r--r-- | CORE/SME/src/csr/csrApiRoam.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/CORE/SME/src/csr/csrApiRoam.c b/CORE/SME/src/csr/csrApiRoam.c index d1f6d8507cbb..3f9c721fca22 100644 --- a/CORE/SME/src/csr/csrApiRoam.c +++ b/CORE/SME/src/csr/csrApiRoam.c @@ -18440,6 +18440,14 @@ eHalStatus csrRoamOffloadScan(tpAniSirGlobal pMac, tANI_U8 sessionId, return eHAL_STATUS_FAILURE; } + /* Roaming is not supported currently for OWE akm */ + if (pSession->pCurRoamProfile && + (pSession->pCurRoamProfile->AuthType.authType[0] == + eCSR_AUTH_TYPE_OWE)) { + smsLog(pMac, LOGE, "Roaming not suppprted for OWE connection"); + return eHAL_STATUS_SUCCESS; + } + /* Roaming is not supported currently for SAE authentication */ if (pSession->pCurRoamProfile && CSR_IS_AUTH_TYPE_SAE( |
