Home | History | Annotate | Download | only in rsn

Lines Matching refs:hRsn

89 void rsn_groupReKeyTimeout(TI_HANDLE hRsn);
90 void rsn_micFailureReportTimeout(TI_HANDLE hRsn);
91 static rsn_siteBanEntry_t * findEntryForInsert(TI_HANDLE hRsn);
92 static rsn_siteBanEntry_t * findBannedSiteAndCleanup(TI_HANDLE hRsn, macAddress_t siteBssid);
94 /*static void clearBannedSiteList(TI_HANDLE hRsn);*/
188 * I - hRsn - rsniation SM context \n
196 TI_STATUS rsn_unload (TI_HANDLE hRsn)
201 if (hRsn == NULL)
206 pRsn = (rsn_t*)hRsn;
216 os_memoryFree (pRsn->hOs, hRsn, sizeof(rsn_t));
232 * I - hRsn - Rsniation SM context \n
249 TI_STATUS rsn_config (TI_HANDLE hRsn,
271 if (hRsn == NULL)
276 pRsn = (rsn_t*)hRsn;
344 * I - hRsn - Rsniation SM context \n
352 TI_STATUS rsn_reconfig (TI_HANDLE hRsn)
354 rsn_t *pRsn = (rsn_t *)hRsn;
375 * I - hRsn - Rsn SM context \n
435 * I - hRsn - Rsniation SM context \n
443 TI_STATUS rsn_start(TI_HANDLE hRsn)
451 pRsn = (rsn_t*)hRsn;
534 TI_STATUS rsn_removedDefKeys (TI_HANDLE hRsn)
537 rsn_t *pRsn = (rsn_t*)hRsn;
561 /*clearBannedSiteList(hRsn);*/
577 * I - hRsn - Rsniation SM context \n
585 TI_STATUS rsn_stop (TI_HANDLE hRsn, BOOL removeKeys)
592 pRsn = (rsn_t*)hRsn;
647 * I - hRsn - Rsniation SM context \n
656 TI_STATUS rsn_getParam(TI_HANDLE hRsn, paramInfo_t *pParam)
661 pRsn = (rsn_t*)hRsn;
776 * I - hRsn - Rsniation SM context \n
787 TI_STATUS rsn_getParamPartial(TI_HANDLE hRsn, paramInfoPartial_t *pParam)
792 pRsn = (rsn_t*)hRsn;
833 * I - hRsn - Rsniation SM context \n
842 TI_STATUS rsn_setParam (TI_HANDLE hRsn, paramInfo_t *pParam)
848 pRsn = (rsn_t*)hRsn;
1146 * I - hRsn - Rsniation SM context \n
1245 * I - hRsn - Rsniation SM context \n
1296 * I - hRsn - Rsniation SM context \n
1344 * I - hRsn - Rsniation SM context \n
1353 TI_STATUS rsn_evalSite(TI_HANDLE hRsn, rsnData_t *pRsnData, bssType_e bssType, macAddress_t bssid, UINT32 *pMetric)
1358 if ((pRsnData == NULL) || (hRsn == NULL))
1364 pRsn = (rsn_t*)hRsn;
1366 if (rsn_isSiteBanned(hRsn, bssid) == TRUE)
1391 * I - hRsn - Rsn SM context \n
1401 TI_STATUS rsn_getInfoElement(TI_HANDLE hRsn, UINT8 *pRsnIe, UINT8 *pRsnIeLen)
1406 if ((hRsn == NULL) || (pRsnIe == NULL) || (pRsnIeLen == NULL))
1411 pRsn = (rsn_t*)hRsn;
1432 * I - hRsn - Rsn SM context \n
1442 TI_STATUS rsn_getExcExtendedInfoElement(TI_HANDLE hRsn, UINT8 *pRsnIe, UINT8 *pRsnIeLen)
1447 if ((hRsn == NULL) || (pRsnIe == NULL) || (pRsnIeLen == NULL))
1452 pRsn = (rsn_t*)hRsn;
1473 * I - hRsn - Rsniation SM context \n
1482 TI_STATUS rsn_setSite(TI_HANDLE hRsn, rsnData_t *pRsnData, UINT8 *pAssocIe, UINT8 *pAssocIeLen)
1487 if ((pRsnData == NULL) || (hRsn == NULL))
1493 pRsn = (rsn_t*)hRsn;
1691 TI_STATUS rsn_reportAuthFailure(TI_HANDLE hRsn, authStatus_e authStatus)
1697 if (hRsn==NULL)
1702 pRsn = (rsn_t*)hRsn;
1718 rsn_banSite(hRsn, param.content.ctrlDataCurrentBSSID, RSN_SITE_BAN_LEVEL_FULL, RSN_AUTH_FAILURE_TIMEOUT);
1735 TI_STATUS rsn_reportMicFailure(TI_HANDLE hRsn, UINT8 *pType, UINT32 Length)
1737 rsn_t *pRsn = (rsn_t *) hRsn;
1789 banLevel = rsn_banSite (hRsn, param.content.ctrlDataCurrentBSSID, RSN_SITE_BAN_LEVEL_HALF, RSN_MIC_FAILURE_TIMEOUT);
1816 void rsn_groupReKeyTimeout(TI_HANDLE hRsn)
1820 pRsn = (rsn_t*)hRsn;
1831 void rsn_micFailureReportTimeout(TI_HANDLE hRsn)
1835 pRsn = (rsn_t*)hRsn;
1859 * I - hRsn - Rsniation SM context \n
1866 TI_STATUS rsn_resetPMKIDList(TI_HANDLE hRsn)
1868 rsn_t *pRsn = (rsn_t*)hRsn;
1877 void rsn_debugFunc(TI_HANDLE hRsn)
1881 if (hRsn == NULL)
1885 pRsn = (rsn_t*)hRsn;
1902 * I - hRsn - Rsniation SM context \n
1911 TI_STATUS rsn_startPreAuth(TI_HANDLE hRsn, bssidList4PreAuth_t *pBssidList)
1916 if (hRsn == NULL || pBssidList == NULL)
1921 pRsn = (rsn_t*)hRsn;
1941 * I - hRsn - RSN module context \n
1949 BOOL rsn_isSiteBanned(TI_HANDLE hRsn, macAddress_t siteBssid)
1951 rsn_t * pRsn = (rsn_t *) hRsn;
1955 if ((entry = findBannedSiteAndCleanup(hRsn, siteBssid)) == NULL)
1979 * I - hRsn - RSN module context \n
1989 rsn_siteBanLevel_e rsn_banSite(TI_HANDLE hRsn, macAddress_t siteBssid, rsn_siteBanLevel_e banLevel, UINT32 durationMs)
1991 rsn_t * pRsn = (rsn_t *) hRsn;
1995 if ((entry = findBannedSiteAndCleanup(hRsn, siteBssid)) != NULL)
2007 entry = findEntryForInsert (hRsn);
2032 * I - hRsn - RSN module context \n
2039 static rsn_siteBanEntry_t * findEntryForInsert(TI_HANDLE hRsn)
2041 rsn_t * pRsn = (rsn_t *) hRsn;
2070 * I - hRsn - RSN module context \n
2079 static rsn_siteBanEntry_t * findBannedSiteAndCleanup(TI_HANDLE hRsn, macAddress_t siteBssid)
2081 rsn_t * pRsn = (rsn_t *) hRsn;
2127 * I - hRsn - RSN module context \n
2135 static void clearBannedSiteList(TI_HANDLE hRsn)
2137 rsn_t * pRsn = (rsn_t *) hRsn;