Removed Event A2 and A4 threshold attributes from eNodeB RRC

This commit is contained in:
Budiarto Herman
2013-06-19 17:21:22 +03:00
parent b9eafb57e3
commit 662f996003
2 changed files with 6 additions and 18 deletions

View File

@@ -1422,26 +1422,16 @@ LteEnbRrc::GetTypeId (void)
TimeValue (MilliSeconds (500)),
MakeTimeAccessor (&LteEnbRrc::m_handoverLeavingTimeoutDuration),
MakeTimeChecker ())
.AddAttribute ("AdmitHandoverRequest",
.AddAttribute ("AdmitHandoverRequest",
"Whether to admit an X2 handover request from another eNB",
BooleanValue (true),
BooleanValue (true),
MakeBooleanAccessor (&LteEnbRrc::m_admitHandoverRequest),
MakeBooleanChecker ())
.AddAttribute ("AdmitRrcConnectionRequest",
MakeBooleanChecker ())
.AddAttribute ("AdmitRrcConnectionRequest",
"Whether to admit a connection request from a Ue",
BooleanValue (true),
BooleanValue (true),
MakeBooleanAccessor (&LteEnbRrc::m_admitRrcConnectionRequest),
MakeBooleanChecker ())
.AddAttribute ("EventA2Threshold",
"Threshold of the event A2 (Serving becomes worse than threshold)",
UintegerValue (34),
MakeUintegerAccessor (&LteEnbRrc::m_eventA2Threshold),
MakeUintegerChecker<uint8_t> ())
.AddAttribute ("EventA4Threshold",
"Threshold of the event A4 (Neighbour becomes better than threshold)",
UintegerValue (0),
MakeUintegerAccessor (&LteEnbRrc::m_eventA4Threshold),
MakeUintegerChecker<uint8_t> ())
.AddAttribute ("ServingCellHandoverThreshold",
"If serving cell is worse than this threshold, neighbour cells are consider for Handover",
UintegerValue (15),

View File

@@ -888,8 +888,6 @@ private:
// Handover related attributes
bool m_admitHandoverRequest;
bool m_admitRrcConnectionRequest;
uint8_t m_eventA2Threshold;
uint8_t m_eventA4Threshold;
uint8_t m_servingCellHandoverThreshold;
uint8_t m_neighbourCellHandoverOffset;
@@ -897,7 +895,7 @@ private:
Time m_connectionTimeoutDuration;
Time m_connectionRejectedTimeoutDuration;
Time m_handoverJoiningTimeoutDuration;
Time m_handoverLeavingTimeoutDuration;
Time m_handoverLeavingTimeoutDuration;
// cellid
std::map<uint16_t, Ptr<NeighbourRelation> > m_neighbourRelationTable;