1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| #ifndef _PHL_TDLS_EN_H_
| #define _PHL_TDLS_EN_H_
|
| #ifdef CONFIG_PHL_TDLS
| struct rtw_phl_tdls_ops{
| void *priv;
| bool (*check_tdls_frame)(void *priv,
| struct rtw_phl_stainfo_t *phl_sta,
| struct rtw_recv_pkt *phlrx);
| };
| struct phl_tdls_info_t{
| struct rtw_phl_tdls_ops ops;
| };
| enum rtw_phl_status
| rtw_phl_tdls_init_ops(
| void *phl,
| struct rtw_phl_tdls_ops *ops);
| #endif
| #endif
|
|