14 lines
449 B
C
14 lines
449 B
C
#ifndef _ATBM_P2P_H_
|
|
#define _ATBM_P2P_H_
|
|
#ifdef CONFIG_ATBM_SUPPORT_P2P
|
|
int TxRxPublicActionFrame(u8 *pframe ,u32 len,int bTx);
|
|
|
|
#ifdef ATBM_P2P_CHANGE
|
|
void atbm_parase_p2p_scan_resp(struct atbm_vif *priv,struct sk_buff *skb);
|
|
bool atbm_parase_p2p_action_frame(struct atbm_vif *priv,struct sk_buff *skb,bool tx);
|
|
bool atbm_parase_p2p_mgmt_frame(struct atbm_vif *priv,struct sk_buff *skb,bool tx);
|
|
#endif
|
|
#endif
|
|
#endif //_ATBM_P2P_H_
|
|
|