--- a/src/lte/model/lte-rlc.cc Fri Sep 16 11:01:39 2011 +0200
+++ b/src/lte/model/lte-rlc.cc Fri Sep 16 11:25:36 2011 +0200
@@ -109,9 +109,9 @@
}
void
-LteRlc::SetRnti (uint8_t rnti)
+LteRlc::SetRnti (uint16_t rnti)
{
- NS_LOG_FUNCTION (this << (uint32_t) rnti);
+ NS_LOG_FUNCTION (this << (uint32_t) rnti);
m_rnti = rnti;
}
@@ -199,7 +199,7 @@
Time delay;
if (p->FindFirstMatchingByteTag(rlcTag))
{
- delay = Simulator::Now() - rlcTag.getSenderTimestamp ();
+ delay = Simulator::Now() - rlcTag.GetSenderTimestamp ();
}
NS_LOG_FUNCTION (this << m_rnti << (uint32_t) m_lcid << p->GetSize () << delay.GetNanoSeconds ());
m_rxPdu(m_rnti, m_lcid, p->GetSize (), delay.GetNanoSeconds () );