qcacmn: Add support for WDS aging
Add support for monitoring receive traffic from WDS nodes and aging out inactive WDS nodes Change-Id: Iedea826832a5421714c00bccadc6e0dc4acd4c7e CRs-Fixed: 2004658
This commit is contained in:

committed by
snandini

parent
a7b6842a72
commit
b8bbf16192
@@ -54,6 +54,23 @@ void dp_rx_sec_ind_handler(void *soc_handle, uint16_t peer_id,
|
||||
uint8_t dp_get_peer_mac_addr_frm_id(struct cdp_soc_t *soc_handle,
|
||||
uint16_t peer_id, uint8_t *peer_mac);
|
||||
|
||||
#ifdef FEATURE_WDS
|
||||
int dp_peer_add_ast(struct dp_soc *soc, struct dp_peer *peer,
|
||||
uint8_t *mac_addr, bool is_self);
|
||||
void dp_peer_del_ast(struct dp_soc *soc,
|
||||
struct dp_ast_entry *ast_entry);
|
||||
#else
|
||||
static inline int dp_peer_add_ast(struct dp_soc *soc, struct dp_peer *peer,
|
||||
uint8_t *mac_addr, bool is_self)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
static inline void dp_peer_del_ast(struct dp_soc *soc,
|
||||
struct dp_ast_entry *ast_entry)
|
||||
{
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef DP_LFR
|
||||
/*
|
||||
* dp_get_vdev_from_soc_vdev_id_wifi3() -
|
||||
|
Reference in New Issue
Block a user