Skip to content
Draft

test #1298

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions include/wifi_base.h
Original file line number Diff line number Diff line change
Expand Up @@ -1637,6 +1637,37 @@ typedef struct {
bool reason_code_present;
} em_connection_status_event_t;

typedef struct {
unsigned long cli_PacketsSent;
unsigned long cli_PacketsReceived;
unsigned long cli_RetransCount;
unsigned long long cli_RxRetries;
int cli_SNR;
unsigned int cli_MaxDownlinkRate;
unsigned int cli_MaxUplinkRate;
unsigned int cli_LastDataDownlinkRate;
unsigned int cli_LastDataUplinkRate;
bool cli_PowerSaveMode;
} dev_stats_t;

typedef struct {
mac_addr_str_t sta_mac;
mac_addr_str_t ap_mac;
unsigned int vap_index;
unsigned int radio_index;
int channel_utilization;
dev_stats_t dev;
struct timespec total_connected_time;
struct timespec total_disconnected_time;
int event;
unsigned int status_code;
int dhcp_event;
int dhcp_msg_type;
char dhcp_hostname[256];
char dhcp_vendor_class[256];
char dhcp_param_list[512];
} wei_data_t;

#endif // EM_APP

#ifdef __cplusplus
Expand Down
Loading
Loading