LteRlc: Remove debug code

This commit is contained in:
Marco Miozzo
2011-05-18 13:29:43 +02:00
parent 211ebb49fa
commit 0f408d433e
2 changed files with 2 additions and 5 deletions

View File

@@ -145,7 +145,7 @@ LteRlc::GetLteMacSapUser ()
NS_OBJECT_ENSURE_REGISTERED (LteRlcSm);
LteRlcSm::LteRlcSm () : bytesrxed(0)
LteRlcSm::LteRlcSm ()
{
NS_LOG_FUNCTION (this);
@@ -154,7 +154,7 @@ LteRlcSm::LteRlcSm () : bytesrxed(0)
LteRlcSm::~LteRlcSm ()
{
NS_LOG_FUNCTION (this << " bytes Rxed " << bytesrxed);
}
TypeId
@@ -179,7 +179,6 @@ LteRlcSm::DoReceivePdu (Ptr<Packet> p)
}
NS_LOG_FUNCTION (this << m_rnti << (uint32_t) m_lcid << p->GetSize () << delay.GetNanoSeconds ());
m_rxPdu(m_rnti, m_lcid, p->GetSize (), delay.GetNanoSeconds () );
bytesrxed += p->GetSize ();
}
void

View File

@@ -126,8 +126,6 @@ public:
virtual void DoReceivePdu (Ptr<Packet> p);
void Start ();
long int bytesrxed;
};