Add support of ResourceStatusUpdate X2 primitive in RRC

This commit is contained in:
Manuel Requena
2012-11-27 19:00:38 +01:00
parent bd460539c8
commit 26dc6705de
2 changed files with 14 additions and 1 deletions

View File

@@ -1203,6 +1203,18 @@ LteEnbRrc::DoRecvLoadInformation (EpcX2SapUser::LoadInformationParams params)
NS_ASSERT ("Processing of LOAD INFORMATION X2 message IS NOT IMPLEMENTED");
}
void
LteEnbRrc::DoRecvResourceStatusUpdate (EpcX2SapUser::ResourceStatusUpdateParams params)
{
NS_LOG_FUNCTION (this);
NS_LOG_LOGIC ("Recv X2 message: RESOURCE STATUS UPDATE");
NS_LOG_LOGIC ("Number of cellMeasurementResultItems = " << params.cellMeasurementResultList.size ());
NS_ASSERT ("Processing of RESOURCE STATUS UPDATE X2 message IS NOT IMPLEMENTED");
}
uint16_t
LteEnbRrc::DoAllocateTemporaryCellRnti ()

View File

@@ -541,7 +541,8 @@ private:
void DoRecvHandoverRequestAck (EpcX2SapUser::HandoverRequestAckParams params);
void DoRecvUeContextRelease (EpcX2SapUser::UeContextReleaseParams params);
void DoRecvLoadInformation (EpcX2SapUser::LoadInformationParams params);
void DoRecvResourceStatusUpdate (EpcX2SapUser::ResourceStatusUpdateParams params);
// CMAC SAP methods
uint16_t DoAllocateTemporaryCellRnti ();