X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fxapp-asn%2Fe2ap%2Fe2ap_control_response.hpp;h=1d6af170992e96af9747a51d60574c45b6e2fd5f;hb=0f5c234d5da8897f2f831e02ff03912e582ba6e9;hp=6880e48c485c20867cdaf323d3c8d31bd994c851;hpb=433b7b2a72c174c75ce2c0c75b225fa0bb813d32;p=ric-app%2Fhw.git diff --git a/src/xapp-asn/e2ap/e2ap_control_response.hpp b/src/xapp-asn/e2ap/e2ap_control_response.hpp index 6880e48..1d6af17 100644 --- a/src/xapp-asn/e2ap/e2ap_control_response.hpp +++ b/src/xapp-asn/e2ap/e2ap_control_response.hpp @@ -1,7 +1,7 @@ /* ================================================================================== - Copyright (c) 2018-2019 AT&T Intellectual Property. + Copyright (c) 2019-2020 AT&T Intellectual Property. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -31,12 +31,12 @@ #include #include #include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include #include "e2ap_control_helper.hpp" #define NUM_CONTROL_ACKNOWLEDGE_IES 3 @@ -52,22 +52,22 @@ public: bool encode_e2ap_control_response(unsigned char *, size_t *, ric_control_helper &, bool); - bool set_fields(E2N_SuccessfulOutcome_t *, ric_control_helper &); - bool get_fields(E2N_SuccessfulOutcome_t *, ric_control_helper &); + bool set_fields(SuccessfulOutcome_t *, ric_control_helper &); + bool get_fields(SuccessfulOutcome_t *, ric_control_helper &); - bool set_fields(E2N_UnsuccessfulOutcome_t *, ric_control_helper &); - bool get_fields(E2N_UnsuccessfulOutcome_t *, ric_control_helper &); + bool set_fields(UnsuccessfulOutcome_t *, ric_control_helper &); + bool get_fields(UnsuccessfulOutcome_t *, ric_control_helper &); std::string get_error(void) const {return error_string ; }; private: - E2N_E2AP_PDU_t * e2ap_pdu_obj; - E2N_SuccessfulOutcome_t * successMsg; - E2N_UnsuccessfulOutcome_t * unsuccessMsg; + E2AP_PDU_t * e2ap_pdu_obj; + SuccessfulOutcome_t * successMsg; + UnsuccessfulOutcome_t * unsuccessMsg; - E2N_RICcontrolAcknowledge_IEs_t *IE_array; - E2N_RICcontrolFailure_IEs_t *IE_failure_array; + RICcontrolAcknowledge_IEs_t *IE_array; + RICcontrolFailure_IEs_t *IE_failure_array; std::string error_string;