mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
346 B
C++
28 lines
346 B
C++
|
|
|
|
#ifndef ENB_MAC_METRICS_H
|
|
#define ENB_MAC_METRICS_H
|
|
|
|
|
|
namespace srsenb {
|
|
|
|
// MAC metrics per user
|
|
|
|
struct mac_metrics_t
|
|
{
|
|
uint16_t rnti;
|
|
int tx_pkts;
|
|
int tx_errors;
|
|
int tx_brate;
|
|
int rx_pkts;
|
|
int rx_errors;
|
|
int rx_brate;
|
|
int ul_buffer;
|
|
int dl_buffer;
|
|
float phr;
|
|
};
|
|
|
|
} // namespace srsenb
|
|
|
|
#endif // ENB_MAC_METRICS_H
|