|
|
|
/**
|
|
|
|
*
|
|
|
|
* \section COPYRIGHT
|
|
|
|
*
|
|
|
|
* Copyright 2013-2022 Software Radio Systems Limited
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "srsran/asn1/e2ap.h"
|
|
|
|
#include "srsran/srsran.h"
|
|
|
|
|
|
|
|
#ifndef RIC_E2AP_H
|
|
|
|
#define RIC_E2AP_H
|
|
|
|
|
|
|
|
using namespace asn1::e2ap;
|
|
|
|
|
|
|
|
class e2ap
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
e2ap(srslog::basic_logger& logger);
|
|
|
|
e2_ap_pdu_c generate_setup_request();
|
|
|
|
int process_setup_response(e2setup_resp_s setup_response);
|
|
|
|
int process_setup_failure();
|
|
|
|
int process_subscription_request(ricsubscription_request_s subscription_request);
|
|
|
|
e2_ap_pdu_c generate_subscription_response();
|
|
|
|
int generate_subscription_failure();
|
|
|
|
int generate_indication();
|
|
|
|
bool has_setup_response() { return setup_response_received; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
srslog::basic_logger& logger;
|
|
|
|
bool setup_response_received = false;
|
|
|
|
bool pending_subscription_request = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* RIC_E2AP_H */
|