From d73d21489ec96da05404e73f2ef5f1a64e4e2348 Mon Sep 17 00:00:00 2001 From: Manuel Requena Date: Wed, 19 Dec 2012 21:21:35 +0100 Subject: [PATCH] Back rlc limit --- src/lte/model/lte-rlc-am.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lte/model/lte-rlc-am.cc b/src/lte/model/lte-rlc-am.cc index 462552e17..5508730fe 100644 --- a/src/lte/model/lte-rlc-am.cc +++ b/src/lte/model/lte-rlc-am.cc @@ -158,8 +158,8 @@ LteRlcAm::DoNotifyTxOpportunity (uint32_t bytes, uint8_t layer, uint8_t harqId) { NS_LOG_FUNCTION (this << m_rnti << (uint32_t) m_lcid << bytes); -// if (bytes <= 2) - if (bytes <= 4) + if (bytes <= 2) +// if (bytes <= 4) { // Stingy MAC: Header fix part is 2 bytes, we need more bytes for the data NS_LOG_LOGIC ("TX opportunity too small = " << bytes);