qcacld-3.0: Indicate assoc req to son

Indicate assoc req frame to son

Change-Id: Ic5779011cc248ad6fc8b341170b64ac45a1d5a9c
CRs-Fixed: 3043011
This commit is contained in:
bings
2021-07-29 16:10:10 +08:00
committed by Madan Koyyalamudi
parent db6b10f50f
commit 6921a0560c
3 changed files with 73 additions and 0 deletions

View File

@@ -63,6 +63,20 @@ QDF_STATUS wlan_son_peer_set_kickout_allow(struct wlan_objmgr_vdev *vdev,
bool wlan_son_peer_is_kickout_allow(struct wlan_objmgr_vdev *vdev,
uint8_t *macaddr);
/**
* wlan_son_ind_assoc_req_frm() - indicate assoc req frame to son
* @vdev: pointer to vdev
* @is_reassoc: true if it is reassoc req
* @frame: frame body
* @frame_len: frame body length
* @status: assoc req frame is handled successfully
*
* Return: Void
*/
void wlan_son_ind_assoc_req_frm(struct wlan_objmgr_vdev *vdev,
uint8_t *macaddr, bool is_reassoc,
uint8_t *frame, uint16_t frame_len,
QDF_STATUS status);
#else
static inline bool wlan_son_peer_is_kickout_allow(struct wlan_objmgr_vdev *vdev,
@@ -70,5 +84,13 @@ static inline bool wlan_son_peer_is_kickout_allow(struct wlan_objmgr_vdev *vdev,
{
return true;
}
static inline
void wlan_son_ind_assoc_req_frm(struct wlan_objmgr_vdev *vdev,
uint8_t *macaddr, bool is_reassoc,
uint8_t *frame, uint16_t frame_len,
QDF_STATUS status)
{
}
#endif /*WLAN_FEATURE_SON*/
#endif