There was an error while loading. Please reload this page.
1 parent 451b56d commit a083a76Copy full SHA for a083a76
1 file changed
src/simu5g/stack/pdcp/NrPdcpEnb.cc
@@ -97,17 +97,7 @@ void NrPdcpEnb::fromLowerLayer(cPacket *pktAux)
97
return;
98
}
99
100
- emit(receivedPacketFromLowerLayerSignal_, pkt);
101
-
102
- auto lteInfo = pkt->getTag<FlowControlInfo>();
103
104
- EV << "LtePdcp : Received packet with CID " << lteInfo->getLcid() << "\n";
105
- EV << "LtePdcp : Packet size " << pkt->getByteLength() << " Bytes\n";
106
107
- MacCid cid = MacCid(lteInfo->getSourceId(), lteInfo->getLcid()); // TODO: check if you have to get master node id
108
109
- LteRxPdcpEntity *entity = getOrCreateRxEntity(cid);
110
- entity->handlePacketFromLowerLayer(pkt);
+ LtePdcpEnbD2D::fromLowerLayer(pktAux);
111
112
113
MacNodeId NrPdcpEnb::getDestId(inet::Ptr<FlowControlInfo> lteInfo)
0 commit comments