|
@@ -784,40 +784,3 @@ uint8_t lim_is_sme_stop_bss_req_valid(uint32_t *pMsg)
|
|
|
|
|
|
return valid;
|
|
|
} /*** end lim_is_sme_stop_bss_req_valid() ***/
|
|
|
-
|
|
|
-/**
|
|
|
- * lim_get_bss_id_from_sme_join_req_msg()
|
|
|
- *
|
|
|
- ***FUNCTION:
|
|
|
- * This function is called in various places to get BSSID
|
|
|
- * from BSS description/Neighbor BSS Info in the SME_JOIN_REQ/
|
|
|
- * SME_REASSOC_REQ message.
|
|
|
- *
|
|
|
- ***PARAMS:
|
|
|
- *
|
|
|
- ***LOGIC:
|
|
|
- *
|
|
|
- ***ASSUMPTIONS:
|
|
|
- * NA
|
|
|
- *
|
|
|
- ***NOTE:
|
|
|
- * NA
|
|
|
- *
|
|
|
- * @param pBuf - Pointer to received SME_JOIN/SME_REASSOC_REQ
|
|
|
- * message
|
|
|
- * @return pBssId - Pointer to BSSID
|
|
|
- */
|
|
|
-
|
|
|
-uint8_t *lim_get_bss_id_from_sme_join_req_msg(uint8_t *pBuf)
|
|
|
-{
|
|
|
- if (!pBuf)
|
|
|
- return NULL;
|
|
|
-
|
|
|
- pBuf += sizeof(uint32_t); /* skip message header */
|
|
|
-
|
|
|
- pBuf += lim_get_u16(pBuf) + sizeof(uint16_t); /* skip RSN IE */
|
|
|
-
|
|
|
- pBuf += sizeof(uint16_t); /* skip length of BSS description */
|
|
|
-
|
|
|
- return pBuf;
|
|
|
-} /*** end lim_get_bss_id_from_sme_join_req_msg() ***/
|