Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(183)

Unified Diff: src/lte/model/enb-net-device.cc

Issue 4901055: NSoC final code review 2011 :LTE RRC extension
Patch Set: Created 12 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/lte/model/enb-rrc-cp-entity.h » ('j') | src/lte/model/enb-rrc-cp-entity.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/lte/model/enb-net-device.cc
===================================================================
--- a/src/lte/model/enb-net-device.cc
+++ b/src/lte/model/enb-net-device.cc
@@ -41,6 +41,7 @@
#include "lte-mac-header.h"
#include "ue-net-device.h"
#include "enb-phy.h"
+#include "enb-rrc-cp-entity.h"
NS_LOG_COMPONENT_DEFINE ("EnbNetDevice");
@@ -51,7 +52,7 @@
TypeId EnbNetDevice::GetTypeId (void)
{
static TypeId
- tid =
+ tid =
Piro Giuseppe 2011/08/22 11:30:37 What is the reason of this patch ? Please, make s
pankaj 2011/09/06 06:05:39 becuase of code indentation . I used a tool .
TypeId ("ns3::EnbNetDevice")
.SetParent<LteNetDevice> ();
return tid;
@@ -94,7 +95,7 @@
EnbNetDevice::InitEnbNetDevice (void)
{
NS_LOG_FUNCTION (this);
- SetRrcEntity (CreateObject<RrcEntity> ());
+ SetRrcEntity (CreateObject<EnbLteRrc> ());
m_ueManager = CreateObject<UeManager> ();
m_macEntity = CreateObject<EnbMacEntity> ();
m_macEntity->SetDevice (this->GetObject<LteNetDevice> ());
@@ -172,7 +173,7 @@
if (protocolNumber != 2048 || bearer == 0)
{
- bearer = GetRrcEntity ()->GetDefaultBearer ();
+ bearer = GetRrcEntity ()->GetDefaultBearer ();
Piro Giuseppe 2011/08/22 11:30:37 What is the reason of this patch ? Please, make s
pankaj 2011/09/06 06:05:39 code indentation.
}
return bearer->Enqueue (packet);
« no previous file with comments | « no previous file | src/lte/model/enb-rrc-cp-entity.h » ('j') | src/lte/model/enb-rrc-cp-entity.h » ('J')

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b