qcacmn: add rx data invalid peer indication

Currently there is no callback for MCL DP to do further action
when receiving data with invalid peer, add it for further processing.

Change-Id: I07c93b5119f0c1a46abba587b6b18c7b691683c7
CRs-Fixed: 2299489
This commit is contained in:
Jinwei Chen
2018-08-20 15:42:08 +08:00
committed by nshrivas
부모 6e0a63ce63
커밋 4673310fba
3개의 변경된 파일64개의 추가작업 그리고 11개의 파일을 삭제

파일 보기

@@ -420,4 +420,16 @@ typedef void (*tx_pause_callback)(uint8_t vdev_id,
typedef void (*ipa_uc_op_cb_type)(uint8_t *op_msg,
void *osif_ctxt);
/**
* struct ol_rx_inv_peer_params - rx invalid peer data parameters
* @vdev_id: Virtual device ID
* @ra: RX data receiver MAC address
* @ta: RX data transmitter MAC address
*/
struct ol_rx_inv_peer_params {
uint8_t vdev_id;
uint8_t ra[OL_TXRX_MAC_ADDR_LEN];
uint8_t ta[OL_TXRX_MAC_ADDR_LEN];
};
#endif /* __CDP_TXRX_MOB_DEF_H */