File tree Expand file tree Collapse file tree 5 files changed +6
-5
lines changed
Expand file tree Collapse file tree 5 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1919#include " simu5g/common/LteDefs.h"
2020#include " simu5g/apps/vod/VoDPacket_m.h"
2121#include " simu5g/apps/vod/VoDUDPStruct.h"
22- #include < inet/transportlayer/contract/udp/UdpControlInfo.h>
2322#include < inet/transportlayer/contract/udp/UdpSocket.h>
2423#include < inet/networklayer/common/L3AddressResolver.h>
2524
Original file line number Diff line number Diff line change 1414
1515#include < fstream>
1616
17- #include < inet/transportlayer/contract/udp/UdpControlInfo.h>
1817#include < inet/transportlayer/contract/udp/UdpSocket.h>
1918#include < inet/networklayer/common/L3AddressResolver.h>
2019
Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ package simu5g.mec.vi;
1414import inet.common.MessageDispatcher;
1515import inet.linklayer.contract.IEthernetInterface;
1616import inet.linklayer.contract.ILoopbackInterface;
17- import inet.linklayer.ethernet.contract.IEthernetLayer;
17+ import inet.linklayer.ethernet.contract.IEthernetLayer; // for inet-4.5
18+ import inet.linklayer.contract.IEthernetLayer; // for inet-4.6
1819import inet.linklayer.ppp.PppInterface;
1920import inet.networklayer.common.InterfaceTable;
2021import inet.networklayer.contract.INetworkLayer;
Original file line number Diff line number Diff line change @@ -16,7 +16,8 @@ import inet.applications.contract.IApp;
1616import inet.common.MessageDispatcher;
1717import simu5g.stack.ICellularNic;
1818import inet.common.packet.recorder.PcapRecorder;
19- import inet.linklayer.ethernet.contract.IEthernetLayer;
19+ import inet.linklayer.contract.IEthernetLayer; // for inet-4.6
20+ import inet.linklayer.ethernet.contract.IEthernetLayer; // for inet-4.5
2021import inet.linklayer.contract.IEthernetInterface;
2122import inet.linklayer.contract.ILoopbackInterface;
2223import inet.mobility.contract.IMobility;
Original file line number Diff line number Diff line change @@ -144,7 +144,8 @@ cplusplus(LteMacPdu::copy) {{
144144 Packet *p1 = sdu[idx];
145145 Packet *p2 = other.sdu[idx];
146146 if (p1->getControlInfo() == nullptr && p2->getControlInfo() != nullptr) {
147- p1->setControlInfo(p2->getControlInfo()->dup());
147+ // FIXME: this never worked. implement proper duplication
148+ // p1->setControlInfo(p2->getControlInfo()->dup());
148149 }
149150 }
150151}}
You can’t perform that action at this time.
0 commit comments