hc
2024-03-25 edb30157bad0c0001c32b854271ace01d3b9a16a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
 ****************************************************************************************
 *
 * @file rwnx_mesh.c
 *
 * Copyright (C) RivieraWaves 2016-2019
 *
 ****************************************************************************************
 */
 
/**
 * INCLUDE FILES
 ****************************************************************************************
 */
 
#include "rwnx_mesh.h"
 
/**
 * FUNCTION DEFINITIONS
 ****************************************************************************************
 */
 
struct rwnx_mesh_proxy *rwnx_get_mesh_proxy_info(struct rwnx_vif *p_rwnx_vif, u8 *p_sta_addr, bool local)
{
   struct rwnx_mesh_proxy *p_mesh_proxy = NULL;
   struct rwnx_mesh_proxy *p_cur_proxy;
 
   /* Look for proxied devices with provided address */
   list_for_each_entry(p_cur_proxy, &p_rwnx_vif->ap.proxy_list, list) {
       if (p_cur_proxy->local != local) {
           continue;
       }
 
       if (!memcmp(&p_cur_proxy->ext_sta_addr, p_sta_addr, ETH_ALEN)) {
           p_mesh_proxy = p_cur_proxy;
           break;
       }
   }
 
   /* Return the found information */
   return p_mesh_proxy;
}