srsLTE/srsenb/hdr/stack/s1ap/s1ap_metrics.h

31 lines
609 B
C
Raw Normal View History

/**
2017-06-02 03:46:06 -07:00
*
* \section COPYRIGHT
2017-06-02 03:46:06 -07:00
*
2021-03-19 03:45:56 -07:00
* Copyright 2013-2021 Software Radio Systems Limited
2017-06-02 03:46:06 -07:00
*
* By using this file, you agree to the terms and conditions set
* forth in the LICENSE file which can be found at the top level of
* the distribution.
2017-06-01 03:25:57 -07:00
*
*/
2018-03-31 10:04:04 -07:00
#ifndef SRSENB_S1AP_METRICS_H
#define SRSENB_S1AP_METRICS_H
2017-06-01 03:25:57 -07:00
namespace srsenb {
typedef enum {
2017-06-01 03:25:57 -07:00
S1AP_ATTACHING = 0, // Attempting to create S1 connection
S1AP_READY, // S1 connected
S1AP_ERROR // Failure
} S1AP_STATUS_ENUM;
2017-06-01 03:25:57 -07:00
struct s1ap_metrics_t {
2017-06-01 03:25:57 -07:00
S1AP_STATUS_ENUM status;
};
} // namespace srsenb
2018-03-31 10:04:04 -07:00
#endif // SRSENB_S1AP_METRICS_H