Home | History | Annotate | Download | only in Sta_Management

Lines Matching refs:pParam

392 *  I/O - pParam - Parameter \n
400 TI_STATUS auth_getParam(TI_HANDLE hAuth, paramInfo_t *pParam)
406 if ((pHandle == NULL) || (pParam == NULL))
411 switch (pParam->paramType)
414 pParam->content.authResponseTimeout = pHandle->timeout;
418 pParam->content.siteMgrTiWlanCounters.AuthRejects = pHandle->authRejectCount;
419 pParam->content.siteMgrTiWlanCounters.AuthTimeouts = pHandle->authTimeoutCount;
423 pParam->content.authLegacyAuthType = pHandle->authType;
444 * I/O - pParam - Parameter \n
452 TI_STATUS auth_setParam(TI_HANDLE hAuth, paramInfo_t *pParam)
458 if ((pHandle == NULL) || (pParam == NULL))
463 switch (pParam->paramType)
466 pHandle->authType = pParam->content.authLegacyAuthType;
485 if ((pParam->content.authResponseTimeout >= AUTH_RESPONSE_TIMEOUT_MIN) &&
486 (pParam->content.authResponseTimeout <= AUTH_RESPONSE_TIMEOUT_MAX))
488 pHandle->timeout = pParam->content.authResponseTimeout;
569 * I/O - pParam - Parameter \n