|
|
@ -420,6 +420,15 @@ public:
|
|
|
|
virtual bool setup_ue_erabs(uint16_t rnti, const asn1::s1ap::erab_setup_request_s& msg) = 0;
|
|
|
|
virtual bool setup_ue_erabs(uint16_t rnti, const asn1::s1ap::erab_setup_request_s& msg) = 0;
|
|
|
|
virtual bool release_erabs(uint32_t rnti) = 0;
|
|
|
|
virtual bool release_erabs(uint32_t rnti) = 0;
|
|
|
|
virtual void add_paging_id(uint32_t ueid, const asn1::s1ap::ue_paging_id_c& ue_paging_id) = 0;
|
|
|
|
virtual void add_paging_id(uint32_t ueid, const asn1::s1ap::ue_paging_id_c& ue_paging_id) = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Reports the reception of S1 HandoverCommand / HandoverPreparationFailure or abnormal conditions during
|
|
|
|
|
|
|
|
* S1 Handover preparation back to RRC.
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* @param rnti user
|
|
|
|
|
|
|
|
* @param is_success true if ho cmd was received
|
|
|
|
|
|
|
|
* @param container TargeteNB RRCConnectionReconfiguration message with MobilityControlInfo
|
|
|
|
|
|
|
|
*/
|
|
|
|
virtual void ho_preparation_complete(uint16_t rnti, bool is_success, srslte::unique_byte_buffer_t container) = 0;
|
|
|
|
virtual void ho_preparation_complete(uint16_t rnti, bool is_success, srslte::unique_byte_buffer_t container) = 0;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
@ -463,10 +472,30 @@ public:
|
|
|
|
virtual void ue_ctxt_setup_complete(uint16_t rnti, const asn1::s1ap::init_context_setup_resp_s& res) = 0;
|
|
|
|
virtual void ue_ctxt_setup_complete(uint16_t rnti, const asn1::s1ap::init_context_setup_resp_s& res) = 0;
|
|
|
|
virtual void ue_erab_setup_complete(uint16_t rnti, const asn1::s1ap::erab_setup_resp_s& res) = 0;
|
|
|
|
virtual void ue_erab_setup_complete(uint16_t rnti, const asn1::s1ap::erab_setup_resp_s& res) = 0;
|
|
|
|
virtual bool is_mme_connected() = 0;
|
|
|
|
virtual bool is_mme_connected() = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Command the s1ap to transmit a HandoverRequired message to MME.
|
|
|
|
|
|
|
|
* This message initiates the S1 handover preparation procedure at the Source eNB
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* @param rnti user to perform S1 handover
|
|
|
|
|
|
|
|
* @param target_eci eNB Id + Cell Id of the target eNB
|
|
|
|
|
|
|
|
* @param target_plmn PLMN of the target eNB
|
|
|
|
|
|
|
|
* @param rrc_container RRC container with SourceENBToTargetENBTransparentContainer message.
|
|
|
|
|
|
|
|
* @return true if successful
|
|
|
|
|
|
|
|
*/
|
|
|
|
virtual bool send_ho_required(uint16_t rnti,
|
|
|
|
virtual bool send_ho_required(uint16_t rnti,
|
|
|
|
uint32_t target_eci,
|
|
|
|
uint32_t target_eci,
|
|
|
|
srslte::plmn_id_t target_plmn,
|
|
|
|
srslte::plmn_id_t target_plmn,
|
|
|
|
srslte::unique_byte_buffer_t rrc_container) = 0;
|
|
|
|
srslte::unique_byte_buffer_t rrc_container) = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Command the s1ap to transmit eNBStatusTransfer message to MME. This message passes the PDCP context of the UE
|
|
|
|
|
|
|
|
* performing S1 handover from source eNB to target eNB.
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* @param rnti user to perform S1 handover
|
|
|
|
|
|
|
|
* @param bearer_status_list PDCP SN and HFN status of the bearers to be preserved at target eNB
|
|
|
|
|
|
|
|
* @return true if successful
|
|
|
|
|
|
|
|
*/
|
|
|
|
virtual bool send_enb_status_transfer_proc(uint16_t rnti, std::vector<bearer_status_info>& bearer_status_list) = 0;
|
|
|
|
virtual bool send_enb_status_transfer_proc(uint16_t rnti, std::vector<bearer_status_info>& bearer_status_list) = 0;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|