Skip to content

Commit

Permalink
Change default maxTxBufferSize to 10KBytes
Browse files Browse the repository at this point in the history
  • Loading branch information
mrequena committed May 9, 2013
1 parent 14ae4b6 commit 9633b4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lte/model/lte-rlc-um.cc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ namespace ns3 {
NS_OBJECT_ENSURE_REGISTERED (LteRlcUm);

LteRlcUm::LteRlcUm ()
: m_maxTxBufferSize (2 * 1024 * 1024),
: m_maxTxBufferSize (10 * 1024),
m_txBufferSize (0),
m_sequenceNumber (0),
m_vrUr (0),
Expand All @@ -59,7 +59,7 @@ LteRlcUm::GetTypeId (void)
.AddConstructor<LteRlcUm> ()
.AddAttribute ("MaxTxBufferSize",
"Maximum Size of the Transmission Buffer (in Bytes)",
UintegerValue (2 * 1024 * 1024),
UintegerValue (10 * 1024),
MakeUintegerAccessor (&LteRlcUm::m_maxTxBufferSize),
MakeUintegerChecker<uint32_t> ())
;
Expand Down

0 comments on commit 9633b4a

Please sign in to comment.