| Column | Type | Meaning |
|---|---|---|
id | integer (PK) | Row ID |
discoverer_mac | string / mac_address_t | The AP that discovered the neighbor |
discoveree_mac | string / mac_address_t | The AP that was discovered |
neighbor_type | integer (bitmap) | LAN/WiFi |
pos_x | float | From EasyMesh |
pos_y | float | From EasyMesh |
pos_z | float | From EasyMesh |
next_hop | mac_address_t | From EasyMesh |
num_hops | int | From EasyMesh |
path_loss | int | From EasyMesh |
timestamp | uint64 | Time when entry was last updated |
em_base.h:
typedef struct {
mac_address_t nbr;
float pos_x;
float pos_y;
float pos_z;
mac_address_t next_hop;
unsigned int num_hops;
int path_loss;
} em_neighbor_info_t;