├── .cproject ├── .gitignore ├── .nedfolders ├── .oppbuildspec ├── .project ├── LICENSE ├── Makefile ├── README.md ├── examples ├── Athens │ ├── Demo │ │ ├── Demo.ned │ │ ├── config.xml │ │ └── omnetpp.ini │ └── Whatevercast │ │ ├── Whatevercast.ned │ │ ├── config.xml │ │ └── omnetpp.ini ├── Basics │ ├── AllNodes │ │ ├── AllNodes.anf │ │ ├── AllNodes.ned │ │ ├── config.xml │ │ └── omnetpp.ini │ ├── SimpleRelay │ │ ├── SimpleRelay.anf │ │ ├── SimpleRelay.ned │ │ ├── config.xml │ │ └── omnetpp.ini │ ├── SingleCS │ │ ├── SingleCS.anf │ │ ├── SingleCS.ned │ │ ├── config.xml │ │ └── omnetpp.ini │ ├── SmallNetwork │ │ ├── SmallNetwork.anf │ │ ├── SmallNetwork.ned │ │ ├── config.xml │ │ └── omnetpp.ini │ ├── SmallNetwork2 │ │ ├── SmallNetwork2.anf │ │ ├── SmallNetwork2.ned │ │ ├── config.xml │ │ └── omnetpp.ini │ ├── TwoCSs │ │ ├── TwoCSs.anf │ │ ├── TwoCSs.ned │ │ ├── config.xml │ │ └── omnetpp.ini │ └── TwoCSsSimple │ │ ├── TwoCSsSimple.anf │ │ ├── TwoCSsSimple.ned │ │ ├── config.xml │ │ └── omnetpp.ini ├── Congestion │ ├── DCCongestion │ │ ├── DCCongestion.ned │ │ ├── config.xml │ │ ├── description.txt │ │ └── omnetpp.ini │ ├── IEEEICC │ │ ├── SmallNetwork2.ned │ │ ├── config.xml │ │ └── omnetpp.ini │ ├── SimpleRelayCongestion │ │ ├── CongestionPing.anf │ │ ├── SimpleRelayCongestion.ned │ │ ├── config.xml │ │ ├── description.txt │ │ └── omnetpp.ini │ └── SmallNetwork3 │ │ ├── SmallNetwork3.ned │ │ ├── config.xml │ │ ├── omnetpp.ini │ │ └── qosreq.xml ├── Demos │ ├── UseCase1 │ │ ├── UseCase1.ned │ │ ├── config.xml │ │ └── omnetpp.ini │ ├── UseCase2 │ │ ├── UseCase2.ned │ │ ├── config.xml │ │ └── omnetpp.ini │ ├── UseCase3 │ │ ├── UseCase3.ned │ │ ├── config.xml │ │ └── omnetpp.ini │ ├── UseCase4 │ │ ├── UseCase4.ned │ │ ├── config.xml │ │ └── omnetpp.ini │ └── UseCase5 │ │ ├── .qtenvrc │ │ ├── Ping.anf │ │ ├── UseCase5.ned │ │ ├── config.xml │ │ └── omnetpp.ini ├── LB │ └── SmallNetworkLB │ │ ├── SmallNetworkLB.ned │ │ ├── config.xml │ │ ├── omnetpp.ini │ │ └── stats.txt ├── Routing │ ├── BigDC │ │ ├── BigDC.ned │ │ ├── README │ │ ├── connectionset.xml │ │ ├── directory.xml │ │ ├── generator │ │ │ ├── action.php │ │ │ ├── connections.php │ │ │ ├── directory.php │ │ │ ├── index.html │ │ │ ├── ini.php │ │ │ └── ned.php │ │ ├── modules.xml │ │ ├── omnetpp.ini │ │ ├── qoscube.xml │ │ └── qosreq.xml │ ├── DDC │ │ ├── DDC.ned │ │ ├── README │ │ ├── connectionset.xml │ │ ├── directory.xml │ │ ├── modules.xml │ │ ├── omnetpp.ini │ │ ├── qoscube.xml │ │ └── qosreq.xml │ ├── DistributedCloudsLS │ │ ├── DistributedCloudsLS.anf │ │ ├── DistributedCloudsLS.ned │ │ ├── DistributedCloudsLS.png │ │ ├── config.xml │ │ └── omnetpp.ini │ ├── FatTreeTopology │ │ ├── FatTreeTopology.anf │ │ ├── FatTreeTopology.ned │ │ ├── config.xml │ │ ├── omnetpp.ini │ │ ├── preall.xml │ │ ├── qos.xml │ │ └── qosreq.xml │ ├── FatTreeTopologyPref │ │ ├── FatTreeTopologyPref.anf │ │ ├── FatTreeTopologyPref.ned │ │ ├── README │ │ ├── config.xml │ │ └── omnetpp.ini │ ├── LatEx │ │ ├── LatEx.ned │ │ ├── QoS.xml │ │ ├── config.xml │ │ ├── connections.xml │ │ └── omnetpp.ini │ ├── RCoreNet │ │ ├── RCoreNet.ned │ │ ├── README │ │ ├── connectionset.xml │ │ ├── directory.xml │ │ ├── metrics.xml │ │ ├── omnetpp.ini │ │ ├── qoscube.xml │ │ └── qosreq.xml │ ├── SmallNetRouting │ │ ├── SmallNetRouting.anf │ │ ├── SmallNetRouting.ned │ │ ├── config.xml │ │ ├── omnetpp.ini │ │ ├── preall.xml │ │ ├── qos.xml │ │ └── qosreq.xml │ └── UnreliableLinks │ │ ├── QoS.xml │ │ ├── README │ │ ├── UnreliableLinks.ned │ │ ├── config.xml │ │ ├── connections.xml │ │ └── omnetpp.ini ├── Tutorials │ ├── DeltaQ_Scheduling │ │ ├── QTA.xml │ │ ├── cong_qoscube.xml │ │ ├── connectionset3.xml │ │ ├── connectionset9.xml │ │ ├── connectionshim.xml │ │ ├── data0.xml │ │ ├── data10X3.xml │ │ ├── data1X3.xml │ │ ├── data1X9.xml │ │ ├── datanull.xml │ │ ├── directory.xml │ │ ├── free_qoscube.xml │ │ ├── net.ned │ │ ├── omnet.ini │ │ ├── qosreq.xml │ │ ├── shimqoscube.xml │ │ └── tuto_sh.png │ └── Topological_DC_Routing │ │ ├── directory.xml │ │ ├── net.ned │ │ ├── omnet.ini │ │ ├── qoscube.xml │ │ ├── qosreq.xml │ │ ├── shimconnectionset.xml │ │ ├── shimconnectionsetCentral.xml │ │ ├── shimqoscube.xml │ │ └── tutu_rt.png ├── UPC │ ├── Cat │ │ ├── FWDT.xml │ │ ├── Q2T.xml │ │ ├── QTA.xml │ │ ├── cat.jpg │ │ ├── connectionset.xml │ │ ├── data.xml │ │ ├── directory.xml │ │ ├── efcp_qoscube.xml │ │ ├── minidata.xml │ │ ├── net.ned │ │ ├── omnet.ini │ │ ├── qoscube.xml │ │ ├── qosreq.xml │ │ └── shimqoscube.xml │ ├── DCa │ │ ├── directory.xml │ │ ├── net.ned │ │ ├── omnet.ini │ │ ├── qoscube.xml │ │ ├── qosreq.xml │ │ ├── shimconnectionset.xml │ │ └── shimqoscube.xml │ ├── Mlayer │ │ ├── FWDT.xml │ │ ├── Q2T.xml │ │ ├── QTA.xml │ │ ├── connectionset.xml │ │ ├── directory.xml │ │ ├── fFWDT.xml │ │ ├── infection.xml │ │ ├── metrics.xml │ │ ├── net.ned │ │ ├── omnetpp.ini │ │ ├── qoscube.xml │ │ ├── qosreq.xml │ │ └── shimqoscube.xml │ └── Unreliable │ │ ├── QTA.xml │ │ ├── connectionset.xml │ │ ├── data.xml │ │ ├── data_simple.xml │ │ ├── directory.xml │ │ ├── net.ned │ │ ├── omnet.ini │ │ ├── qoscube.xml │ │ ├── qoscubeCore.xml │ │ ├── qoscubeCore_free.xml │ │ ├── qoscubeNet.xml │ │ ├── qoscubeWl.xml │ │ ├── qosreq.xml │ │ ├── shimconnectionset.xml │ │ ├── shimqoscube.xml │ │ └── voicedata.xml ├── Webinars │ ├── EFCPPolicyTest │ │ ├── EFCPPolicyTest.ned │ │ ├── config.xml │ │ └── omnetpp.ini │ └── FAPolicyTest │ │ ├── FAPolicyTest.ned │ │ ├── config.xml │ │ └── omnetpp.ini └── package.ned ├── makefrag ├── makemakefiles ├── package.ned ├── playground ├── DAF │ └── AE │ │ ├── AESInt.cc │ │ ├── AESInt.h │ │ ├── AESInt.ned │ │ └── AEVideo │ │ ├── AEVideo.cc │ │ ├── AEVideo.h │ │ └── AEVideo.ned └── UPC │ ├── Misc │ └── ManagementApps │ │ ├── ExmanagementApps.tar.gz │ │ └── README │ ├── Old │ └── ExtendedPingTwoCSsSimple │ │ ├── ExtendedPingTwoCSsSimple.ned │ │ ├── config.xml │ │ └── omnetpp.ini │ ├── Routing │ ├── DDCLB │ │ ├── DDCLB.ned │ │ ├── README │ │ ├── connectionset.xml │ │ ├── directory.xml │ │ ├── modules.xml │ │ ├── omnetpp.ini │ │ ├── qoscube.xml │ │ ├── qosreq.xml │ │ └── stats.txt │ ├── LatExOld │ │ ├── LatEx.ned │ │ ├── QoS.xml │ │ ├── README │ │ ├── config.xml │ │ ├── connections.xml │ │ ├── omnetpp.ini │ │ └── stats.txt │ ├── SmallRandNet │ │ ├── SmallRandNet.anf │ │ ├── config.xml │ │ ├── dynamism.txt │ │ ├── network.ned │ │ ├── omnetpp.ini │ │ ├── preall.xml │ │ ├── qos.xml │ │ └── qosreq.xml │ └── randPrefNet │ │ ├── DV │ │ ├── DV_DV │ │ ├── config.xml │ │ ├── omnetpp.ini │ │ └── randPrefNet.ned │ └── Scheduling │ ├── CongestedNode │ ├── CU.xml │ ├── CongestedNode.ned │ ├── QoS.xml │ ├── config.xml │ └── omnetpp.ini │ ├── CongestedNode2 │ ├── CU.xml │ ├── CongestedNode2.ned │ ├── DL │ ├── DQ.xml │ ├── QoS.xml │ ├── config.xml │ ├── eCU.xml │ ├── eDL │ ├── eDLa │ └── omnetpp.ini │ ├── TreeCongestion │ ├── BE │ ├── CU.xml │ ├── DL │ ├── QoS.xml │ ├── TreeCongestion.ned │ ├── config.xml │ ├── eCU.xml │ └── omnetpp.ini │ ├── TwoScheduling │ ├── CU.xml │ ├── QoS.xml │ ├── TwoScheduling.ned │ ├── config.xml │ └── omnetpp.ini │ └── TwoScheduling9 │ ├── 9x5DL │ ├── CU.xml │ ├── QoS.xml │ ├── TwoScheduling9.ned │ ├── config.xml │ ├── eCU.xml │ └── omnetpp.ini ├── policies ├── DAF │ └── .gitignore ├── DIF │ ├── EFCP │ │ ├── DTCP │ │ │ ├── ECN │ │ │ │ ├── ECNPolicyBase.cc │ │ │ │ ├── ECNPolicyBase.h │ │ │ │ ├── ECNPolicyDefault │ │ │ │ │ ├── ECNPolicyDefault.cc │ │ │ │ │ ├── ECNPolicyDefault.h │ │ │ │ │ └── ECNPolicyDefault.ned │ │ │ │ └── IntECNPolicy.ned │ │ │ ├── ECNSlowDown │ │ │ │ ├── DTCPECNSlowDownPolicyDefault │ │ │ │ │ ├── DTCPECNSlowDownPolicyDefault.cc │ │ │ │ │ ├── DTCPECNSlowDownPolicyDefault.h │ │ │ │ │ └── DTCPECNSlowDownPolicyDefault.ned │ │ │ │ ├── DTCPECNSlowDownPolicyTCP │ │ │ │ │ ├── DTCPECNSlowDownPolicyTCP.cc │ │ │ │ │ ├── DTCPECNSlowDownPolicyTCP.h │ │ │ │ │ └── DTCPECNSlowDownPolicyTCP.ned │ │ │ │ ├── ECNSlowDownPolicyBase.cc │ │ │ │ ├── ECNSlowDownPolicyBase.h │ │ │ │ ├── ECNSlowDownPolicyDefault │ │ │ │ │ ├── ECNSlowDownPolicyDefault.cc │ │ │ │ │ ├── ECNSlowDownPolicyDefault.h │ │ │ │ │ └── ECNSlowDownPolicyDefault.ned │ │ │ │ └── IntECNSlowDownPolicy.ned │ │ │ ├── LostControlPDU │ │ │ │ ├── IntLostControlPDUPolicy.ned │ │ │ │ ├── LostControlPDUPolicyBase.cc │ │ │ │ ├── LostControlPDUPolicyBase.h │ │ │ │ └── LostControlPDUPolicyDefault │ │ │ │ │ ├── LostControlPDUPolicyDefault.cc │ │ │ │ │ ├── LostControlPDUPolicyDefault.h │ │ │ │ │ └── LostControlPDUPolicyDefault.ned │ │ │ ├── NoOverridePeak │ │ │ │ ├── IntNoOverridePeakPolicy.ned │ │ │ │ ├── NoOverridePeakPolicyBase.cc │ │ │ │ ├── NoOverridePeakPolicyBase.h │ │ │ │ └── NoOverridePeakPolicyDefault │ │ │ │ │ ├── NoOverridePeakPolicyDefault.cc │ │ │ │ │ ├── NoOverridePeakPolicyDefault.h │ │ │ │ │ └── NoOverridePeakPolicyDefault.ned │ │ │ ├── NoRateSlowDown │ │ │ │ ├── IntNoRateSlowDownPolicy.ned │ │ │ │ ├── NoRateSlowDownPolicyBase.cc │ │ │ │ ├── NoRateSlowDownPolicyBase.h │ │ │ │ └── NoRateSlowDownPolicyDefault │ │ │ │ │ ├── NoRateSlowDownPolicyDefault.cc │ │ │ │ │ ├── NoRateSlowDownPolicyDefault.h │ │ │ │ │ └── NoRateSlowDownPolicyDefault.ned │ │ │ ├── RateReduction │ │ │ │ ├── IntRateReductionPolicy.ned │ │ │ │ ├── RateReductionPolicyBase.cc │ │ │ │ ├── RateReductionPolicyBase.h │ │ │ │ └── RateReductionPolicyDefault │ │ │ │ │ ├── RateReductionPolicyDefault.cc │ │ │ │ │ ├── RateReductionPolicyDefault.h │ │ │ │ │ └── RateReductionPolicyDefault.ned │ │ │ ├── RcvFCOverrun │ │ │ │ ├── IntRcvFCOverrunPolicy.ned │ │ │ │ ├── RcvFCOverrunPolicyBase.cc │ │ │ │ ├── RcvFCOverrunPolicyBase.h │ │ │ │ └── RcvFCOverrunPolicyDefault │ │ │ │ │ ├── RcvFCOverrunPolicyDefault.cc │ │ │ │ │ ├── RcvFCOverrunPolicyDefault.h │ │ │ │ │ └── RcvFCOverrunPolicyDefault.ned │ │ │ ├── RcvrAck │ │ │ │ ├── IntRcvrAckPolicy.ned │ │ │ │ ├── RcvrAckPolicyBase.cc │ │ │ │ ├── RcvrAckPolicyBase.h │ │ │ │ ├── RcvrAckPolicyDefault │ │ │ │ │ ├── RcvrAckPolicyDefault.cc │ │ │ │ │ ├── RcvrAckPolicyDefault.h │ │ │ │ │ └── RcvrAckPolicyDefault.ned │ │ │ │ └── RcvrAckPolicyLG │ │ │ │ │ ├── RcvrAckPolicyLG.cc │ │ │ │ │ ├── RcvrAckPolicyLG.h │ │ │ │ │ └── RcvrAckPolicyLG.ned │ │ │ ├── RcvrControlAck │ │ │ │ ├── IntRcvrControlAckPolicy.ned │ │ │ │ ├── RcvrControlAckPolicyBase.cc │ │ │ │ ├── RcvrControlAckPolicyBase.h │ │ │ │ └── RcvrControlAckPolicyDefault │ │ │ │ │ ├── RcvrControlAckPolicyDefault.cc │ │ │ │ │ ├── RcvrControlAckPolicyDefault.h │ │ │ │ │ └── RcvrControlAckPolicyDefault.ned │ │ │ ├── RcvrFC │ │ │ │ ├── IntRcvrFCPolicy.ned │ │ │ │ ├── RcvrFCPolicyBase.cc │ │ │ │ ├── RcvrFCPolicyBase.h │ │ │ │ ├── RcvrFCPolicyDefault │ │ │ │ │ ├── RcvrFCPolicyDefault.cc │ │ │ │ │ ├── RcvrFCPolicyDefault.h │ │ │ │ │ └── RcvrRCPolicyDefault.ned │ │ │ │ └── RcvrFCPolicyDefaultWithCounters │ │ │ │ │ ├── RcvrFCPolicyDefaultWithCounters.cc │ │ │ │ │ ├── RcvrFCPolicyDefaultWithCounters.h │ │ │ │ │ └── RcvrFCPolicyDefaultWithCounters.ned │ │ │ ├── ReceivingFC │ │ │ │ ├── IntRReceivingFCPolicy.ned │ │ │ │ ├── ReceivingFCPolicyBase.cc │ │ │ │ ├── ReceivingFCPolicyBase.h │ │ │ │ └── ReceivingFCPolicyDefault │ │ │ │ │ ├── ReceivingFCPolicyDefault.cc │ │ │ │ │ ├── ReceivingFCPolicyDefault.h │ │ │ │ │ └── ReceivingFCPolicyDefault.ned │ │ │ ├── ReconcileFC │ │ │ │ ├── IntReconcileFCPolicy.ned │ │ │ │ ├── ReconcileFCPolicyBase.cc │ │ │ │ ├── ReconcileFCPolicyBase.h │ │ │ │ └── ReconcileFCPolicyDefault │ │ │ │ │ ├── ReconcileFCPolicyDefault.cc │ │ │ │ │ ├── ReconcileFCPolicyDefault.h │ │ │ │ │ └── ReconcileFCPolicyDefault.ned │ │ │ ├── RxTimerExpiry │ │ │ │ ├── IntRxTimerExpiryPolicy.ned │ │ │ │ ├── RxTimerExpiryPolicyBase.cc │ │ │ │ ├── RxTimerExpiryPolicyBase.h │ │ │ │ └── RxTimerExpiryPolicyDefault │ │ │ │ │ ├── RxTimerExpiryPolicyDefault.cc │ │ │ │ │ ├── RxTimerExpiryPolicyDefault.h │ │ │ │ │ └── RxTimerExpiryPolicyDefault.ned │ │ │ ├── SenderAck │ │ │ │ ├── IntSenderAckPolicy.ned │ │ │ │ ├── SenderAckPolicyBase.cc │ │ │ │ ├── SenderAckPolicyBase.h │ │ │ │ ├── SenderAckPolicyDefault │ │ │ │ │ ├── SenderAckPolicyDefault.cc │ │ │ │ │ ├── SenderAckPolicyDefault.h │ │ │ │ │ └── SenderAckPolicyDefault.ned │ │ │ │ ├── SenderAckPolicyLG │ │ │ │ │ ├── SenderAckPolicyLG.cc │ │ │ │ │ ├── SenderAckPolicyLG.h │ │ │ │ │ └── SenderAckPolicyLG.ned │ │ │ │ └── SenderAckPolicyTCP │ │ │ │ │ ├── SenderAckPolicyTCP.cc │ │ │ │ │ ├── SenderAckPolicyTCP.h │ │ │ │ │ └── SenderAckPolicyTCP.ned │ │ │ ├── SendingAck │ │ │ │ ├── IntSendingAckPolicy.ned │ │ │ │ ├── SendingAckPolicyBase.cc │ │ │ │ ├── SendingAckPolicyBase.h │ │ │ │ └── SendingAckPolicyDefault │ │ │ │ │ ├── SendingAckPolicyDefault.cc │ │ │ │ │ ├── SendingAckPolicyDefault.h │ │ │ │ │ └── SendingAckPolicyDefault.ned │ │ │ ├── SndFCOverrun │ │ │ │ ├── IntSndFCOverrunPolicy.ned │ │ │ │ ├── SndFCOverrunPolicyBase.cc │ │ │ │ ├── SndFCOverrunPolicyBase.h │ │ │ │ └── SndFCOverrunPolicyDefault │ │ │ │ │ ├── SndFCOverrunPolicyDefault.cc │ │ │ │ │ ├── SndFCOverrunPolicyDefault.h │ │ │ │ │ └── SndFCOverrunPolicyDefault.ned │ │ │ └── TxControl │ │ │ │ ├── IntTxControlPolicy.ned │ │ │ │ ├── TxControlPolicyBase.cc │ │ │ │ ├── TxControlPolicyBase.h │ │ │ │ ├── TxControlPolicyDefault │ │ │ │ ├── TxControlPolicyDefault.cc │ │ │ │ ├── TxControlPolicyDefault.h │ │ │ │ └── TxControlPolicyDefault.ned │ │ │ │ ├── TxControlPolicyLG │ │ │ │ ├── TxControlPolicyLG.cc │ │ │ │ ├── TxControlPolicyLG.h │ │ │ │ └── TxControlPolicyLG.ned │ │ │ │ └── TxControlPolicyTCPTahoe │ │ │ │ ├── TxControlPolicyTCPTahoe.cc │ │ │ │ ├── TxControlPolicyTCPTahoe.h │ │ │ │ └── TxControlPolicyTCPTahoe.ned │ │ ├── DTP │ │ │ ├── InitialSeqNum │ │ │ │ ├── InitialSeqNumPolicyBase.cc │ │ │ │ ├── InitialSeqNumPolicyBase.h │ │ │ │ ├── InitialSeqNumPolicyDefault │ │ │ │ │ ├── InitialSeqNumPolicyDefault.cc │ │ │ │ │ ├── InitialSeqNumPolicyDefault.h │ │ │ │ │ └── InitialSeqNumPolicyDefault.ned │ │ │ │ └── IntInitialSeqNumPolicy.ned │ │ │ ├── RTTEstimator │ │ │ │ ├── IntRTTEstimatorPolicy.ned │ │ │ │ ├── RTTEstimatorPolicyBase.cc │ │ │ │ ├── RTTEstimatorPolicyBase.h │ │ │ │ ├── RTTEstimatorPolicyDefault │ │ │ │ │ ├── RTTEstimatorPolicyDefault.cc │ │ │ │ │ ├── RTTEstimatorPolicyDefault.h │ │ │ │ │ └── RTTEstimatorPolicyDefault.ned │ │ │ │ ├── RTTEstimatorPolicyLG │ │ │ │ │ ├── RTTEstimatorPolicyLG.cc │ │ │ │ │ ├── RTTEstimatorPolicyLG.h │ │ │ │ │ └── RTTEstimatorPolicyLG.ned │ │ │ │ └── RTTEstimatorPolicyTCP │ │ │ │ │ ├── RTTEstimatorPolicyTCP.cc │ │ │ │ │ ├── RTTEstimatorPolicyTCP.h │ │ │ │ │ └── RTTEstimatorPolicyTCP.ned │ │ │ ├── RcvrInactivity │ │ │ │ ├── IntRcvrInactivityPolicy.ned │ │ │ │ ├── RcvrInactivityPolicyBase.cc │ │ │ │ ├── RcvrInactivityPolicyBase.h │ │ │ │ └── RcvrInactivityPolicyDefault │ │ │ │ │ ├── RcvrInactivityPolicyDefault.cc │ │ │ │ │ ├── RcvrInactivityPolicyDefault.h │ │ │ │ │ └── RcvrInactivityPolicyDefault.ned │ │ │ └── SenderInactivity │ │ │ │ ├── IntSenderInactivityPolicy.ned │ │ │ │ ├── SenderInactivityPolicyBase.cc │ │ │ │ ├── SenderInactivityPolicyBase.h │ │ │ │ └── SenderInactivityPolicyDefault │ │ │ │ ├── SenderInactivityPolicyDefault.cc │ │ │ │ ├── SenderInactivityPolicyDefault.h │ │ │ │ └── SenderInactivityPolicyDefault.ned │ │ ├── EFCPPolicy.cc │ │ └── EFCPPolicy.h │ ├── FA │ │ ├── AllocateRetry │ │ │ ├── AllocateRetryBase.h │ │ │ ├── IAllocateRetry.ned │ │ │ ├── LimitedRetries │ │ │ │ ├── LimitedRetries.cc │ │ │ │ ├── LimitedRetries.h │ │ │ │ └── LimitedRetries.ned │ │ │ ├── NoRetry │ │ │ │ ├── NoRetry.cc │ │ │ │ ├── NoRetry.h │ │ │ │ └── NoRetry.ned │ │ │ └── UnlimitedRetries │ │ │ │ ├── UnlimitedRetries.cc │ │ │ │ ├── UnlimitedRetries.h │ │ │ │ └── UnlimitedRetries.ned │ │ ├── MultilevelQoS │ │ │ ├── IAMultilevelQoS.ned │ │ │ ├── MultilevelQoS.h │ │ │ ├── QoSIdComparer │ │ │ │ ├── QoSIdComparer.cc │ │ │ │ ├── QoSIdComparer.h │ │ │ │ └── QoSIdComparer.ned │ │ │ └── QoSMinComparer │ │ │ │ ├── QoSMinComparer.cc │ │ │ │ ├── QoSMinComparer.h │ │ │ │ └── QoSMinComparer.ned │ │ └── NewFlowRequest │ │ │ ├── INewFlowRequest.ned │ │ │ ├── MinComparer │ │ │ ├── MinComparer.cc │ │ │ ├── MinComparer.h │ │ │ └── MinComparer.ned │ │ │ ├── NewFlowRequestBase.cc │ │ │ ├── NewFlowRequestBase.h │ │ │ └── ScoreComparer │ │ │ ├── ScoreComparer.cc │ │ │ ├── ScoreComparer.h │ │ │ └── ScoreComparer.ned │ ├── RA │ │ ├── AddressComparator │ │ │ ├── AddressComparatorBase.cc │ │ │ ├── AddressComparatorBase.h │ │ │ ├── EndPoint │ │ │ │ ├── EndPoint.cc │ │ │ │ ├── EndPoint.h │ │ │ │ └── EndPoint.ned │ │ │ ├── ExactMatch │ │ │ │ ├── ExactMatch.cc │ │ │ │ ├── ExactMatch.h │ │ │ │ └── ExactMatch.ned │ │ │ ├── IntAddressComparator.ned │ │ │ └── PrefixMatch │ │ │ │ ├── PrefixMatch.cc │ │ │ │ ├── PrefixMatch.h │ │ │ │ └── PrefixMatch.ned │ │ ├── PDUFG │ │ │ ├── BiDomainGenerator │ │ │ │ ├── BiDomainGenerator.cc │ │ │ │ ├── BiDomainGenerator.h │ │ │ │ └── BiDomainGenerator.ned │ │ │ ├── GRE │ │ │ │ ├── Centralized │ │ │ │ │ ├── GRE_ClosFabric.cc │ │ │ │ │ ├── GRE_ClosFabric.h │ │ │ │ │ ├── GRE_ClosFabric.ned │ │ │ │ │ ├── GRE_ClosSpine.cc │ │ │ │ │ ├── GRE_ClosSpine.h │ │ │ │ │ ├── GRE_ClosSpine.ned │ │ │ │ │ ├── GRE_ClosToR.cc │ │ │ │ │ ├── GRE_ClosToR.h │ │ │ │ │ ├── GRE_ClosTor.ned │ │ │ │ │ ├── GRE_ManagerClos.cc │ │ │ │ │ ├── GRE_ManagerClos.h │ │ │ │ │ └── GRE_ManagerClos.ned │ │ │ │ ├── ClosRouting │ │ │ │ │ ├── GRE_Clos0R.cc │ │ │ │ │ ├── GRE_Clos0R.h │ │ │ │ │ ├── GRE_Clos0R.ned │ │ │ │ │ ├── GRE_Clos1R.cc │ │ │ │ │ ├── GRE_Clos1R.h │ │ │ │ │ ├── GRE_Clos1R.ned │ │ │ │ │ ├── GRE_Clos2R.cc │ │ │ │ │ ├── GRE_Clos2R.h │ │ │ │ │ ├── GRE_Clos2R.ned │ │ │ │ │ ├── GRE_ClosR.cc │ │ │ │ │ ├── GRE_ClosR.h │ │ │ │ │ └── txt │ │ │ │ │ │ ├── GRE_Clos0R.cc.txt │ │ │ │ │ │ ├── GRE_Clos0R.h.txt │ │ │ │ │ │ ├── GRE_Clos1R.cc.txt │ │ │ │ │ │ ├── GRE_Clos1R.h.txt │ │ │ │ │ │ ├── GRE_Clos2R.cc.txt │ │ │ │ │ │ └── GRE_Clos2R.h.txt │ │ │ │ ├── ClosStatic │ │ │ │ │ ├── GRE_Clos0S.cc │ │ │ │ │ ├── GRE_Clos0S.h │ │ │ │ │ ├── GRE_Clos0S.ned │ │ │ │ │ ├── GRE_Clos1S.cc │ │ │ │ │ ├── GRE_Clos1S.h │ │ │ │ │ ├── GRE_Clos1S.ned │ │ │ │ │ ├── GRE_Clos2S.cc │ │ │ │ │ ├── GRE_Clos2S.h │ │ │ │ │ └── GRE_Clos2S.ned │ │ │ │ └── Simple │ │ │ │ │ ├── GRE_Simple.cc │ │ │ │ │ ├── GRE_Simple.h │ │ │ │ │ └── GRE_Simple.ned │ │ │ ├── HierarchicalGenerator │ │ │ │ ├── HierarchicalGenerator.cc │ │ │ │ ├── HierarchicalGenerator.h │ │ │ │ └── HierarchicalGenerator.ned │ │ │ ├── HopsQoSMEntries │ │ │ │ ├── HopsQoSMEntries.cc │ │ │ │ ├── HopsQoSMEntries.h │ │ │ │ └── HopsQoSMEntries.ned │ │ │ ├── HopsSingle1Entry │ │ │ │ ├── HopsSingle1Entry.cc │ │ │ │ ├── HopsSingle1Entry.h │ │ │ │ └── HopsSingle1Entry.ned │ │ │ ├── HopsSingleMEntries │ │ │ │ ├── HopsSingleMEntries.cc │ │ │ │ ├── HopsSingleMEntries.h │ │ │ │ └── HopsSingleMEntries.ned │ │ │ ├── IPLSPDUFG │ │ │ │ ├── IPLSPDUFG.cc │ │ │ │ └── IPLSPDUFG.h │ │ │ ├── IQoSAwareMEntries │ │ │ │ ├── IQoSAwareMEntries.cc │ │ │ │ ├── IQoSAwareMEntries.h │ │ │ │ └── IQoSAwareMEntries.ned │ │ │ ├── LatGenerator │ │ │ │ ├── LatGenerator.cc │ │ │ │ ├── LatGenerator.h │ │ │ │ └── LatGenerator.ned │ │ │ ├── LatencySingle1Entry │ │ │ │ ├── LatencySingle1Entry.cc │ │ │ │ ├── LatencySingle1Entry.h │ │ │ │ └── LatencySingle1Entry.ned │ │ │ ├── LatencySingleMEntries │ │ │ │ ├── LatencySingleMEntries.cc │ │ │ │ ├── LatencySingleMEntries.h │ │ │ │ └── LatencySingleMEntries.ned │ │ │ ├── MSimpleGenerator │ │ │ │ ├── MSimpleGenerator.cc │ │ │ │ ├── MSimpleGenerator.h │ │ │ │ └── MSimpleGenerator.ned │ │ │ ├── NeiGen │ │ │ │ ├── NeiGen.cc │ │ │ │ ├── NeiGen.h │ │ │ │ └── NeiGen.ned │ │ │ ├── OFStaticGenerator │ │ │ │ ├── OFStaticGenerator.cc │ │ │ │ ├── OFStaticGenerator.h │ │ │ │ └── OFStaticGenerator.ned │ │ │ ├── PLQoSAwareMEntries │ │ │ │ ├── PLQoSAwareMEntries.cc │ │ │ │ ├── PLQoSAwareMEntries.h │ │ │ │ └── PLQoSAwareMEntries.ned │ │ │ ├── PSTLatOrHopMEntries │ │ │ │ ├── PSTLatOrHopMEntries.cc │ │ │ │ ├── PSTLatOrHopMEntries.h │ │ │ │ └── PSTLatOrHopMEntries.ned │ │ │ ├── PortsLoadGenerator │ │ │ │ ├── PortsLoadGenerator.cc │ │ │ │ ├── PortsLoadGenerator.h │ │ │ │ └── PortsLoadGenerator.ned │ │ │ ├── QoSAwareMEntries │ │ │ │ ├── QoSAwareMEntries.cc │ │ │ │ ├── QoSAwareMEntries.h │ │ │ │ └── QoSAwareMEntries.ned │ │ │ ├── QoSDomainGenerator │ │ │ │ ├── QoSDomainGenerator.cc │ │ │ │ ├── QoSDomainGenerator.h │ │ │ │ └── QoSDomainGenerator.ned │ │ │ ├── SimpleDCGenerator │ │ │ │ ├── SimpleDCGenerator.cc │ │ │ │ ├── SimpleDCGenerator.h │ │ │ │ └── SimpleDCGenerator.ned │ │ │ ├── SimpleGenerator │ │ │ │ ├── SimpleGenerator.cc │ │ │ │ ├── SimpleGenerator.h │ │ │ │ └── SimpleGenerator.ned │ │ │ ├── SimpleHopMEntries │ │ │ │ ├── SimpleHopMEntries.cc │ │ │ │ ├── SimpleHopMEntries.h │ │ │ │ └── SimpleHopMEntries.ned │ │ │ ├── SimpleLatOrHopMEntries │ │ │ │ ├── SimpleLatOrHopMEntries.cc │ │ │ │ ├── SimpleLatOrHopMEntries.h │ │ │ │ └── SimpleLatOrHopMEntries.ned │ │ │ ├── SingleDomainGenerator │ │ │ │ ├── SingleDomainGenerator.cc │ │ │ │ ├── SingleDomainGenerator.h │ │ │ │ └── SingleDomainGenerator.ned │ │ │ ├── StatGen │ │ │ │ ├── StatGen.cc │ │ │ │ ├── StatGen.h │ │ │ │ └── StatGen.ned │ │ │ ├── StaticGenerator │ │ │ │ ├── StaticGenerator.cc │ │ │ │ ├── StaticGenerator.h │ │ │ │ └── StaticGenerator.ned │ │ │ └── VoidDCGenerator │ │ │ │ ├── VoidDCGenerator.cc │ │ │ │ ├── VoidDCGenerator.h │ │ │ │ └── VoidDCGenerator.ned │ │ ├── QueueAlloc │ │ │ ├── IntRAQueueAlloc.ned │ │ │ ├── QueueAllocBase.cc │ │ │ ├── QueueAllocBase.h │ │ │ ├── QueuePerNCU │ │ │ │ ├── QueuePerNCU.cc │ │ │ │ ├── QueuePerNCU.h │ │ │ │ └── QueuePerNCU.ned │ │ │ ├── QueuePerNFlow │ │ │ │ ├── QueuePerNFlow.cc │ │ │ │ ├── QueuePerNFlow.h │ │ │ │ └── QueuePerNFlow.ned │ │ │ ├── QueuePerNQoS │ │ │ │ ├── QueuePerNQoS.cc │ │ │ │ ├── QueuePerNQoS.h │ │ │ │ └── QueuePerNQoS.ned │ │ │ ├── QueuePerNQoSxPLen │ │ │ │ ├── QueuePerNQoSxPLen.cc │ │ │ │ ├── QueuePerNQoSxPLen.h │ │ │ │ └── QueuePerNQoSxPLen.ned │ │ │ └── SingleQueue │ │ │ │ ├── SingleQueue.cc │ │ │ │ ├── SingleQueue.h │ │ │ │ └── SingleQueue.ned │ │ └── QueueIDGen │ │ │ ├── IDPerNCU │ │ │ ├── IDPerNCU.cc │ │ │ ├── IDPerNCU.h │ │ │ └── IDPerNCU.ned │ │ │ ├── IDPerNFlow │ │ │ ├── IDPerNFlow.cc │ │ │ ├── IDPerNFlow.h │ │ │ └── IDPerNFlow.ned │ │ │ ├── IDPerNQoS │ │ │ ├── IDPerNQoS.cc │ │ │ ├── IDPerNQoS.h │ │ │ └── IDPerNQoS.ned │ │ │ ├── IDPerNQoSxPLen │ │ │ ├── IDPerNQoSxPLen.cc │ │ │ ├── IDPerNQoSxPLen.h │ │ │ └── IDPerNQoSxPLen.ned │ │ │ ├── IntRAQueueIDGen.ned │ │ │ ├── QueueIDGenBase.cc │ │ │ ├── QueueIDGenBase.h │ │ │ └── SingleID │ │ │ ├── SingleID.cc │ │ │ ├── SingleID.h │ │ │ └── SingleID.ned │ ├── RMT │ │ ├── MaxQueue │ │ │ ├── BLUEDropper │ │ │ │ ├── BLUEDropper.cc │ │ │ │ ├── BLUEDropper.h │ │ │ │ └── BLUEDropper.ned │ │ │ ├── DumbMaxQ │ │ │ │ ├── DumbMaxQ.cc │ │ │ │ ├── DumbMaxQ.h │ │ │ │ └── DumbMaxQ.ned │ │ │ ├── ECNMarker │ │ │ │ ├── ECNMarker.cc │ │ │ │ ├── ECNMarker.h │ │ │ │ └── ECNMarker.ned │ │ │ ├── ECNMarkerLG │ │ │ │ ├── ECNMarkerLG.cc │ │ │ │ ├── ECNMarkerLG.h │ │ │ │ └── ECNMarkerLG.ned │ │ │ ├── IntRMTMaxQPolicy.ned │ │ │ ├── REDDropper │ │ │ │ ├── REDDropper.cc │ │ │ │ ├── REDDropper.h │ │ │ │ └── REDDropper.ned │ │ │ ├── REDUpstreamNotifier │ │ │ │ ├── REDUpstreamNotifier.cc │ │ │ │ ├── REDUpstreamNotifier.h │ │ │ │ └── REDUpstreamNotifier.ned │ │ │ ├── RMTMaxQBase.cc │ │ │ ├── RMTMaxQBase.h │ │ │ ├── ReadRateReducer │ │ │ │ ├── ReadRateReducer.cc │ │ │ │ ├── ReadRateReducer.h │ │ │ │ └── ReadRateReducer.ned │ │ │ ├── TailDrop │ │ │ │ ├── TailDrop.cc │ │ │ │ ├── TailDrop.h │ │ │ │ └── TailDrop.ned │ │ │ └── UpstreamNotifier │ │ │ │ ├── UpstreamNotifier.cc │ │ │ │ ├── UpstreamNotifier.h │ │ │ │ └── UpstreamNotifier.ned │ │ ├── Monitor │ │ │ ├── BEMonitor │ │ │ │ ├── BEMonitor.cc │ │ │ │ ├── BEMonitor.h │ │ │ │ └── BEMonitor.ned │ │ │ ├── DLMonitor │ │ │ │ ├── DLMonitor.cc │ │ │ │ ├── DLMonitor.h │ │ │ │ └── DLMonitor.ned │ │ │ ├── DQMonitor │ │ │ │ ├── .gitignore │ │ │ │ ├── DQMonitor.cc │ │ │ │ ├── DQMonitor.h │ │ │ │ ├── DQMonitor.ned │ │ │ │ ├── dlCUInfo.cc │ │ │ │ └── dlCUInfo.h │ │ │ ├── DummyMonitor │ │ │ │ ├── DummyMonitor.cc │ │ │ │ ├── DummyMonitor.h │ │ │ │ └── DummyMonitor.ned │ │ │ ├── IntRMTQMonitorPolicy.ned │ │ │ ├── IterativeMonitor │ │ │ │ ├── IterativeMonitor.cc │ │ │ │ ├── IterativeMonitor.h │ │ │ │ └── IterativeMonitor.ned │ │ │ ├── IterativeStopMonitor │ │ │ │ ├── IterativeStopMonitor.cc │ │ │ │ ├── IterativeStopMonitor.h │ │ │ │ └── IterativeStopMonitor.ned │ │ │ ├── ModularMonitor │ │ │ │ ├── Int_MM_Drop_Module.h │ │ │ │ ├── Int_MM_Drop_Module.ned │ │ │ │ ├── Int_MM_Out_Module.h │ │ │ │ ├── Int_MM_Out_Module.ned │ │ │ │ ├── MM_DL_Drop │ │ │ │ │ ├── MM_DL_Drop.cc │ │ │ │ │ ├── MM_DL_Drop.h │ │ │ │ │ └── MM_DL_Drop.ned │ │ │ │ ├── MM_DL_Out │ │ │ │ │ ├── MM_DL_Out.cc │ │ │ │ │ ├── MM_DL_Out.h │ │ │ │ │ └── MM_DL_Out.ned │ │ │ │ ├── MM_DQ_Drop │ │ │ │ │ ├── MM_DQ_Drop.cc │ │ │ │ │ ├── MM_DQ_Drop.h │ │ │ │ │ └── MM_DQ_Drop.ned │ │ │ │ ├── MM_DQ_Out │ │ │ │ │ ├── MM_DQ_Out.cc │ │ │ │ │ ├── MM_DQ_Out.h │ │ │ │ │ └── MM_DQ_Out.ned │ │ │ │ ├── MM_PDQ_Drop │ │ │ │ │ ├── MM_PDQ_Drop.cc │ │ │ │ │ ├── MM_PDQ_Drop.h │ │ │ │ │ └── MM_PDQ_Drop.ned │ │ │ │ ├── MM_P_Out │ │ │ │ │ ├── MM_P_Out.cc │ │ │ │ │ ├── MM_P_Out.h │ │ │ │ │ └── MM_P_Out.ned │ │ │ │ ├── MM_SPort_Drop │ │ │ │ │ ├── MM_SPort_Drop.cc │ │ │ │ │ ├── MM_SPort_Drop.h │ │ │ │ │ └── MM_SPort_Drop.ned │ │ │ │ ├── MM_Simple_Drop │ │ │ │ │ ├── MM_Simple_Drop.cc │ │ │ │ │ ├── MM_Simple_Drop.h │ │ │ │ │ └── MM_Simple_Drop.ned │ │ │ │ ├── MM_Simple_Out │ │ │ │ │ ├── MM_Simple_Out.cc │ │ │ │ │ ├── MM_Simple_Out.h │ │ │ │ │ └── MM_Simple_Out.ned │ │ │ │ ├── MM_WFQ_Drop │ │ │ │ │ ├── MM_WFQ_Drop.cc │ │ │ │ │ ├── MM_WFQ_Drop.h │ │ │ │ │ └── MM_WFQ_Drop.ned │ │ │ │ ├── MM_WFQ_Out │ │ │ │ │ ├── MM_WFQ_Out.cc │ │ │ │ │ ├── MM_WFQ_Out.h │ │ │ │ │ └── MM_WFQ_Out.ned │ │ │ │ ├── MM_eDL_Drop │ │ │ │ │ ├── MM_eDL_Drop.cc │ │ │ │ │ ├── MM_eDL_Drop.h │ │ │ │ │ └── MM_eDL_Drop.ned │ │ │ │ ├── MM_eDL_Out │ │ │ │ │ ├── MM_eDL_Out.cc │ │ │ │ │ ├── MM_eDL_Out.h │ │ │ │ │ └── MM_eDL_Out.ned │ │ │ │ ├── MM_maxDelayLimited_Out │ │ │ │ │ ├── MM_maxDelayLimited_Out.cc │ │ │ │ │ ├── MM_maxDelayLimited_Out.h │ │ │ │ │ └── MM_maxDelayLimited_Out.ned │ │ │ │ ├── MM_maxDelay_Out │ │ │ │ │ ├── MM_maxDelay_Out.cc │ │ │ │ │ ├── MM_maxDelay_Out.h │ │ │ │ │ └── MM_maxDelay_Out.ned │ │ │ │ ├── MM_maxPST_Out │ │ │ │ │ ├── MM_maxPST_Out.cc │ │ │ │ │ ├── MM_maxPST_Out.h │ │ │ │ │ └── MM_maxPST_Out.ned │ │ │ │ ├── MM_maxWP_Out │ │ │ │ │ ├── MM_maxWP_Out.cc │ │ │ │ │ ├── MM_maxWP_Out.h │ │ │ │ │ └── MM_maxWP_Out.ned │ │ │ │ ├── MM_psDQ_Out │ │ │ │ │ ├── MM_psDQ_Out.cc │ │ │ │ │ ├── MM_psDQ_Out.h │ │ │ │ │ └── MM_psDQ_Out.ned │ │ │ │ ├── ModularMonitor.cc │ │ │ │ ├── ModularMonitor.h │ │ │ │ ├── ModularMonitor.ned │ │ │ │ ├── ModularMonitorSignals.h │ │ │ │ └── SM_Burst │ │ │ │ │ ├── SM_Burst.cc │ │ │ │ │ └── SM_Burst.h │ │ │ ├── PortsLoadMonitor │ │ │ │ ├── PortsLoadMonitor.cc │ │ │ │ ├── PortsLoadMonitor.h │ │ │ │ └── PortsLoadMonitor.ned │ │ │ ├── QTAMux │ │ │ │ ├── Mux.cc │ │ │ │ ├── Mux.h │ │ │ │ ├── Mux0 │ │ │ │ │ ├── Mux0.cc │ │ │ │ │ └── Mux0.h │ │ │ │ ├── Mux1 │ │ │ │ │ ├── Mux1.cc │ │ │ │ │ └── Mux1.h │ │ │ │ ├── Mux2 │ │ │ │ │ ├── Mux2.cc │ │ │ │ │ └── Mux2.h │ │ │ │ ├── Mux3 │ │ │ │ │ ├── Mux3.cc │ │ │ │ │ └── Mux3.h │ │ │ │ ├── Mux4 │ │ │ │ │ ├── Mux4.cc │ │ │ │ │ └── Mux4.h │ │ │ │ ├── Mux5 │ │ │ │ │ ├── Mux5.cc │ │ │ │ │ └── Mux5.h │ │ │ │ ├── PS.cc │ │ │ │ ├── PS.h │ │ │ │ ├── PS0 │ │ │ │ │ ├── PS0.cc │ │ │ │ │ └── PS0.h │ │ │ │ ├── PS1 │ │ │ │ │ ├── PS1.cc │ │ │ │ │ └── PS1.h │ │ │ │ ├── PS2 │ │ │ │ │ ├── PS2.cc │ │ │ │ │ └── PS2.h │ │ │ │ ├── PS3 │ │ │ │ │ ├── PS3.cc │ │ │ │ │ └── PS3.h │ │ │ │ ├── PS4 │ │ │ │ │ ├── PS4.cc │ │ │ │ │ └── PS4.h │ │ │ │ ├── QTAMonitor.cc │ │ │ │ ├── QTAMonitor.h │ │ │ │ └── QTAMonitor.ned │ │ │ ├── REDMonitor │ │ │ │ ├── REDMonitor.cc │ │ │ │ ├── REDMonitor.h │ │ │ │ └── REDMonitor.ned │ │ │ ├── RMTQMonitorBase.cc │ │ │ ├── RMTQMonitorBase.h │ │ │ ├── SmartMonitor │ │ │ │ └── SmartMonitor.h │ │ │ ├── TKMonitor │ │ │ │ ├── TKMonitor.cc │ │ │ │ ├── TKMonitor.h │ │ │ │ └── TKMonitor.ned │ │ │ ├── WeightedFairQMonitor │ │ │ │ ├── FlowParams.cc │ │ │ │ ├── FlowParams.h │ │ │ │ ├── WeightedFairQMonitor.cc │ │ │ │ ├── WeightedFairQMonitor.h │ │ │ │ └── WeightedFairQMonitor.ned │ │ │ └── eDLMonitor │ │ │ │ ├── eDLMonitor.cc │ │ │ │ ├── eDLMonitor.h │ │ │ │ └── eDLMonitor.ned │ │ ├── PDUForwarding │ │ │ ├── DefaultGW │ │ │ │ ├── DefaultGW.cc │ │ │ │ ├── DefaultGW.h │ │ │ │ └── DefaultGW.ned │ │ │ ├── DomainTable │ │ │ │ ├── DomainTable.cc │ │ │ │ ├── DomainTable.h │ │ │ │ └── DomainTable.ned │ │ │ ├── FloodMiniTable │ │ │ │ ├── FloodMiniTable.cc │ │ │ │ ├── FloodMiniTable.h │ │ │ │ └── FloodMiniTable.ned │ │ │ ├── GREFWD │ │ │ │ ├── Clos │ │ │ │ │ ├── Clos.cc │ │ │ │ │ ├── Clos.h │ │ │ │ │ ├── Clos0.ned │ │ │ │ │ ├── Clos1.ned │ │ │ │ │ └── Clos2.ned │ │ │ │ ├── GREFWD.cc │ │ │ │ ├── GREFWD.h │ │ │ │ ├── GREFWD.ned │ │ │ │ ├── GRE_Helpers.cc │ │ │ │ └── GRE_Helpers.h │ │ │ ├── HierarchicalTable │ │ │ │ ├── HierarchicalTable.cc │ │ │ │ ├── HierarchicalTable.h │ │ │ │ └── HierarchicalTable.ned │ │ │ ├── IMultiQoSTable │ │ │ │ ├── IMultiQoSTable.cc │ │ │ │ ├── IMultiQoSTable.h │ │ │ │ └── IMultiQoSTable.ned │ │ │ ├── IntBbPDUForwarding.h │ │ │ ├── IntIQoSMForwarding.h │ │ │ ├── IntMMForwarding.h │ │ │ ├── IntMiniForwarding.h │ │ │ ├── IntPDUForwarding.cc │ │ │ ├── IntPDUForwarding.h │ │ │ ├── IntPDUForwardingTable.ned │ │ │ ├── IntQoSMForwarding.h │ │ │ ├── MiniTable │ │ │ │ ├── MiniTable.cc │ │ │ │ ├── MiniTable.h │ │ │ │ └── MiniTable.ned │ │ │ ├── MultiMiniTable │ │ │ │ ├── MultiMiniTable.cc │ │ │ │ ├── MultiMiniTable.h │ │ │ │ └── MultiMiniTable.ned │ │ │ ├── MultiQoSTable │ │ │ │ ├── MultiQoSTable.cc │ │ │ │ ├── MultiQoSTable.h │ │ │ │ └── MultiQoSTable.ned │ │ │ ├── NeiTable │ │ │ │ ├── NeiTable.cc │ │ │ │ ├── NeiTable.h │ │ │ │ └── NeiTable.ned │ │ │ ├── Q2FwdT │ │ │ │ ├── Q2FwdT.cc │ │ │ │ ├── Q2FwdT.h │ │ │ │ └── Q2FwdT.ned │ │ │ ├── QoSTable │ │ │ │ ├── QoSTable.cc │ │ │ │ ├── QoSTable.h │ │ │ │ └── QoSTable.ned │ │ │ ├── SimpleDCForwarding │ │ │ │ ├── DCAddr.cc │ │ │ │ ├── DCAddr.h │ │ │ │ ├── Edge │ │ │ │ │ ├── SimpleEdgeForwarding.cc │ │ │ │ │ ├── SimpleEdgeForwarding.h │ │ │ │ │ └── SimpleEdgeForwarding.ned │ │ │ │ ├── Fabric │ │ │ │ │ ├── SimpleFabricForwarding.cc │ │ │ │ │ ├── SimpleFabricForwarding.h │ │ │ │ │ └── SimpleFabricForwarding.ned │ │ │ │ ├── SimpleDCForwarding.cc │ │ │ │ ├── SimpleDCForwarding.h │ │ │ │ ├── Spine │ │ │ │ │ ├── SimpleSpineForwarding.cc │ │ │ │ │ ├── SimpleSpineForwarding.h │ │ │ │ │ └── SimpleSpineForwarding.ned │ │ │ │ └── TOR │ │ │ │ │ ├── SimpleTORForwarding.cc │ │ │ │ │ ├── SimpleTORForwarding.h │ │ │ │ │ └── SimpleTORForwarding.ned │ │ │ └── SimpleTable │ │ │ │ ├── SimpleTable.cc │ │ │ │ ├── SimpleTable.h │ │ │ │ └── SimpleTable.ned │ │ └── Scheduler │ │ │ ├── DQSch │ │ │ ├── DQSch.cc │ │ │ ├── DQSch.h │ │ │ └── DQSch.ned │ │ │ ├── DumbSch │ │ │ ├── DumbSch.cc │ │ │ ├── DumbSch.h │ │ │ └── DumbSch.ned │ │ │ ├── IntRMTSchedulingPolicy.ned │ │ │ ├── IterativeScheduling │ │ │ ├── IterativeScheduling.cc │ │ │ ├── IterativeScheduling.h │ │ │ └── IterativeScheduling.ned │ │ │ ├── LongestQFirst │ │ │ ├── LongestQFirst.cc │ │ │ ├── LongestQFirst.h │ │ │ └── LongestQFirst.ned │ │ │ ├── QTASch │ │ │ ├── QTASch.cc │ │ │ ├── QTASch.h │ │ │ └── QTASch.ned │ │ │ ├── RMTSchedulingBase.cc │ │ │ ├── RMTSchedulingBase.h │ │ │ └── WeightedFairQ │ │ │ ├── WeightedFairQ.cc │ │ │ ├── WeightedFairQ.h │ │ │ └── WeightedFairQ.ned │ ├── Routing │ │ ├── CentralRouting │ │ │ ├── CentralRoutingCommon.h │ │ │ ├── RoutingClient.cc │ │ │ ├── RoutingClient.h │ │ │ ├── RoutingClient.ned │ │ │ ├── RoutingDumb.cc │ │ │ ├── RoutingDumb.h │ │ │ ├── RoutingDumb.ned │ │ │ ├── RoutingManager.cc │ │ │ ├── RoutingManager.h │ │ │ ├── RoutingManager.ned │ │ │ ├── RoutingModule.cc │ │ │ └── RoutingModule.h │ │ ├── DCRouting │ │ │ ├── Edge_Routing.cc │ │ │ ├── Edge_Routing.h │ │ │ ├── Edge_Routing.ned │ │ │ ├── Fabric_Routing.cc │ │ │ ├── Fabric_Routing.h │ │ │ ├── Fabric_Routing.ned │ │ │ ├── IntDCRouting.cc │ │ │ ├── IntDCRouting.h │ │ │ ├── Spine_Routing.cc │ │ │ ├── Spine_Routing.h │ │ │ ├── Spine_Routing.ned │ │ │ ├── TOR_Routing.cc │ │ │ ├── TOR_Routing.h │ │ │ ├── TOR_Routing.ned │ │ │ └── iDC_Routing.ned │ │ ├── DomainRouting │ │ │ ├── DV │ │ │ │ ├── DV.cc │ │ │ │ └── DV.h │ │ │ ├── DomainRouting.ned │ │ │ ├── LS │ │ │ │ ├── LS.cc │ │ │ │ └── LS.h │ │ │ ├── Routing.cc │ │ │ ├── Routing.h │ │ │ ├── rModule.cc │ │ │ └── rModule.h │ │ ├── DummyRouting │ │ │ ├── DummyRouting.cc │ │ │ ├── DummyRouting.h │ │ │ └── DummyRouting.ned │ │ ├── PortsLoadRouting │ │ │ ├── IntPortsLoadRouting.h │ │ │ └── PortsLoadLS │ │ │ │ ├── PLLSCommon.h │ │ │ │ ├── PortsLoadLS.cc │ │ │ │ ├── PortsLoadLS.h │ │ │ │ ├── PortsLoadLS.ned │ │ │ │ ├── PortsLoadRU.cc │ │ │ │ └── PortsLoadRU.h │ │ ├── SimpleRouting │ │ │ ├── IntSimpleRouting.h │ │ │ ├── SimpleDV │ │ │ │ ├── SimpleDV.cc │ │ │ │ ├── SimpleDV.h │ │ │ │ └── SimpleDV.ned │ │ │ └── SimpleLS │ │ │ │ ├── SimpleLS.cc │ │ │ │ ├── SimpleLS.h │ │ │ │ └── SimpleLS.ned │ │ ├── TDomainRouting │ │ │ ├── TDomainRouting.h │ │ │ ├── TDomainRouting.ned │ │ │ ├── Types_TDomainRouting.cc │ │ │ └── Types_TDomainRouting.h │ │ ├── TSimpleRouting │ │ │ ├── IntTSimpleRouting.h │ │ │ ├── TSimpleDV │ │ │ │ ├── TSimpleDV.h │ │ │ │ ├── TSimpleDV.ned │ │ │ │ ├── Types_TSimpleDV.cc │ │ │ │ └── Types_TSimpleDV.h │ │ │ └── TSimpleLS │ │ │ │ ├── TSimpleLS.h │ │ │ │ ├── TSimpleLS.ned │ │ │ │ ├── Types_TSimpleLS.cc │ │ │ │ └── Types_TSimpleLS.h │ │ ├── common │ │ │ ├── DV_Module.h │ │ │ ├── GraphCL.h │ │ │ ├── LS_Module.h │ │ │ ├── Routing_Alg.h │ │ │ ├── Routing_Module.h │ │ │ └── nhLMetric.h │ │ └── eRouting │ │ │ ├── eLink.cc │ │ │ ├── eLink.h │ │ │ ├── eRouting.cc │ │ │ ├── eRouting.h │ │ │ └── eRouting.ned │ └── SDUProtection │ │ ├── DummyProtection │ │ ├── DummyProtection.cc │ │ ├── DummyProtection.h │ │ └── DummyProtection.ned │ │ ├── FixedDelay │ │ ├── FixedDelay.cc │ │ ├── FixedDelay.h │ │ └── FixedDelay.ned │ │ ├── IntSDUProtection.cc │ │ ├── IntSDUProtection.h │ │ └── IntSDUProtection.ned └── makefrag ├── rinasim.doxyfile ├── scripts ├── fingerprints.sh └── slocstats.sh ├── simulate.sh └── src ├── Addons ├── Actions │ ├── FailureSimulation │ │ ├── FailureSimulation.cc │ │ ├── FailureSimulation.h │ │ └── FailureSimulation.ned │ └── FlowKiller │ │ ├── FlowKiller.cc │ │ ├── FlowKiller.h │ │ └── FlowKiller.ned ├── Channels │ ├── ChangingErrorChannel │ │ ├── ChangerErrorChannel.cc │ │ ├── ChangerErrorChannel.h │ │ ├── ChangerErrorChannel.ned │ │ ├── ChangingErrorChannel.cc │ │ ├── ChangingErrorChannel.h │ │ └── ChangingErrorChannel.ned │ └── EthChannel │ │ ├── EthChannel.cc │ │ ├── EthChannel.h │ │ └── EthChannel.ned └── DataInjectors │ ├── CS │ ├── HomeRouter.ned │ ├── Inf_EndPoint.ned │ ├── Inf_Router.ned │ └── Inf_Switch.ned │ ├── FlowsSimulation │ ├── Comparator_FWDG │ │ ├── Inj_Comparator.cc │ │ ├── Inj_Comparator.h │ │ ├── Inj_Comparator.ned │ │ └── Inj_FWDG.h │ ├── Flows │ │ ├── Flow_t.cc │ │ ├── Flow_t.h │ │ ├── client_t.cc │ │ ├── client_t.h │ │ ├── sender_t.cc │ │ ├── sender_t.h │ │ ├── server_t.cc │ │ └── server_t.h │ ├── Implementations │ │ └── VDT │ │ │ ├── VDT.cc │ │ │ ├── VDT.h │ │ │ ├── VDT.ned │ │ │ ├── VDT_Listener.cc │ │ │ ├── VDT_Listener.h │ │ │ └── VDT_Listener.ned │ ├── Inj_t.cc │ ├── Inj_t.h │ └── PDUandData │ │ ├── Data_t.h │ │ ├── Flow_Data.h │ │ ├── Flow_PDU.h │ │ ├── PDU_Req.cc │ │ └── PDU_Req.h │ ├── Infection_t.ned │ └── ReachabilityTest │ ├── ReachabilityTest.cc │ ├── ReachabilityTest.h │ ├── ReachabilityTest.ned │ ├── ReachabilityTest_Comparator.cc │ ├── ReachabilityTest_Comparator.h │ ├── ReachabilityTest_Comparator.ned │ ├── ReachabilityTest_Listener.cc │ ├── ReachabilityTest_Listener.h │ ├── ReachabilityTest_Listener.ned │ ├── ReachabilityTest_PDU.h │ └── ReachabilityTest_Switch.ned ├── CS ├── BorderRouter.ned ├── BorderRouter2n1nm.ned ├── BorderRouter2n1nmLeft.ned ├── BorderRouter3n1nm.ned ├── DC_AS.ned ├── DC_CR.ned ├── DC_Server.ned ├── DC_TOR.ned ├── DC_VM.ned ├── Host1AP.ned ├── Host1APNInt.ned ├── Host1AP_Adm.ned ├── Host2AP.ned ├── Host3NAPMInt.ned ├── HostNAP.ned ├── HostNAP_Adm.ned ├── InteriorRouter2Int.ned ├── InteriorRouter3Int.ned ├── InteriorRouter4Int.ned ├── InteriorRouterNInt.ned ├── InteriorRouterNInt_Adm.ned ├── InteriorRouterNMInt.ned ├── Manager.ned ├── Shim_M_Adm.ned ├── TestHost1AP.ned ├── VIFIBNode.ned ├── VIFIBNodeGL1.ned ├── VIFIBNodeGL2.ned ├── ViFIB.ned └── ViFIB_MGM.ned ├── Common ├── APN.cc ├── APN.h ├── APNamingInfo.cc ├── APNamingInfo.h ├── Address.cc ├── Address.h ├── CDAPProcessingBase.cc ├── CDAPProcessingBase.h ├── CongestionDescriptor.cc ├── CongestionDescriptor.h ├── ConnectionId.cc ├── ConnectionId.h ├── DAP.cc ├── DAP.h ├── ExternConsts.cc ├── ExternConsts.h ├── Flow.cc ├── Flow.h ├── PDU.cc ├── PDU.h ├── PDU.msg ├── Policy.cc ├── Policy.h ├── QoSCube.cc ├── QoSCube.h ├── QoSReq.cc ├── QoSReq.h ├── QueueInfo.cc ├── QueueInfo.h ├── RINASignals.cc ├── RINASignals.h ├── SDU.cc ├── SDU.h ├── SDU.msg ├── SDUData.msg ├── SHA256.cc ├── SHA256.h ├── Socket.cc ├── Socket.h ├── Socket.ned ├── Test.cc ├── Test.h ├── Test.ned ├── Utils.cc └── Utils.h ├── DAF ├── AE │ ├── AE.cc │ ├── AE.h │ ├── AE.ned │ ├── AEBase.cc │ ├── AEBase.h │ ├── AEListeners.cc │ ├── AEListeners.h │ ├── AEMonitor │ │ ├── AEMonitor.cc │ │ ├── AEMonitor.h │ │ └── AEMonitor.ned │ ├── ApplicationEntity.ned │ ├── ApplicationEntityInstance.ned │ └── IAE.ned ├── AEManagement │ ├── AEManagement.ned │ ├── AEMgmt.cc │ ├── AEMgmt.h │ ├── AEMgmt.ned │ ├── AEMgmtBase.cc │ ├── AEMgmtBase.h │ ├── AEMgmtListeners.cc │ ├── AEMgmtListeners.h │ └── AEmanagementModule.ned ├── AP │ ├── AP.cc │ ├── AP.h │ ├── AP.ned │ ├── APBase.cc │ ├── APBase.h │ ├── APIObjBase.cc │ ├── APIObjBase.h │ ├── APIReqObj.cc │ ├── APIReqObj.h │ ├── APIResult.cc │ ├── APIResult.h │ ├── APIRetObj.cc │ ├── APIRetObj.h │ ├── APISocketObj.cc │ ├── APISocketObj.h │ ├── APInst.ned │ ├── APListeners.cc │ ├── APListeners.h │ ├── APPing │ │ ├── APPing.cc │ │ ├── APPing.h │ │ └── APPing.ned │ └── APStream │ │ ├── APStream.cc │ │ ├── APStream.h │ │ └── APStream.ned ├── ApplicationProcess.ned ├── CDAP │ ├── Auth.cc │ ├── Auth.h │ ├── Auth.ned │ ├── AuthListeners.cc │ ├── AuthListeners.h │ ├── CACE.cc │ ├── CACE.h │ ├── CACE.ned │ ├── CACEListeners.cc │ ├── CACEListeners.h │ ├── CDAP.cc │ ├── CDAP.h │ ├── CDAP.ned │ ├── CDAPListeners.cc │ ├── CDAPListeners.h │ ├── CDAPMessage.msg │ ├── CDAPMsgLog.cc │ ├── CDAPMsgLog.h │ ├── CDAPMsgLog.ned │ ├── CDAPMsgLogEntry.cc │ ├── CDAPMsgLogEntry.h │ ├── CDAPSplitter.cc │ ├── CDAPSplitter.h │ ├── CDAPSplitter.ned │ └── CommonDistributedApplicationProtocol.ned ├── DA │ ├── DA.cc │ ├── DA.h │ ├── DA.ned │ ├── DIFAllocator.ned │ ├── Directory.cc │ ├── Directory.h │ ├── Directory.ned │ ├── DirectoryEntry.cc │ ├── DirectoryEntry.h │ ├── NamingInformation.cc │ ├── NamingInformation.h │ ├── NamingInformation.ned │ ├── NamingInformationEntry.cc │ ├── NamingInformationEntry.h │ ├── NeighborTable.cc │ ├── NeighborTable.h │ ├── NeighborTable.ned │ ├── NeighborTableEntry.cc │ ├── NeighborTableEntry.h │ ├── SearchTable.cc │ ├── SearchTable.h │ ├── SearchTable.ned │ ├── SearchTableEntry.cc │ └── SearchTableEntry.h ├── Enrollment │ ├── CACEBase.cc │ ├── CACEBase.h │ ├── CACEGeneric.cc │ ├── CACEGeneric.h │ ├── CACEMgmt.cc │ ├── CACEMgmt.h │ ├── DAFEnrollment.cc │ ├── DAFEnrollment.h │ ├── DAFEnrollmentBase.cc │ ├── DAFEnrollmentBase.h │ ├── DAFEnrollmentListeners.cc │ ├── DAFEnrollmentListeners.h │ ├── DAFEnrollmentNotifier.cc │ ├── DAFEnrollmentNotifier.h │ ├── DAFEnrollmentNotifierBase.cc │ ├── DAFEnrollmentNotifierBase.h │ ├── DAFEnrollmentNotifierListeners.cc │ ├── DAFEnrollmentNotifierListeners.h │ ├── DAFEnrollmentObj.cc │ ├── DAFEnrollmentObj.h │ ├── DAFEnrollmentStateTable.cc │ ├── DAFEnrollmentStateTable.h │ ├── DAFEnrollmentStateTableEntry.cc │ ├── DAFEnrollmentStateTableEntry.h │ ├── DAFOperationObj.cc │ ├── DAFOperationObj.h │ ├── Enrollment.ned │ ├── EnrollmentModule.ned │ ├── EnrollmentNotifier.ned │ └── EnrollmentStateTable.ned ├── IRM │ ├── ConnectionTable.cc │ ├── ConnectionTable.h │ ├── ConnectionTable.ned │ ├── ConnectionTableEntry.cc │ ├── ConnectionTableEntry.h │ ├── IPCResourceManager.ned │ ├── IRM.cc │ ├── IRM.h │ ├── IRM.ned │ ├── IRMListeners.cc │ └── IRMListeners.h └── RIB │ ├── DAFRIBd.cc │ ├── DAFRIBd.h │ ├── DAFRIBdBase.cc │ ├── DAFRIBdBase.h │ ├── DAFRIBdListeners.cc │ ├── DAFRIBdListeners.h │ ├── RIBDaemon.ned │ └── RIBd.ned ├── DIF ├── Delimiting │ ├── Data.cc │ ├── Data.h │ ├── Data.msg │ ├── Delimiting.cc │ ├── Delimiting.h │ ├── Delimiting.ned │ ├── DelimitingTimers.msg │ ├── PDUData.cc │ ├── PDUData.h │ ├── PDUData.msg │ ├── UserDataField.cc │ ├── UserDataField.h │ └── UserDataField.msg ├── EFCP │ ├── DTCP │ │ ├── ControlPDU.msg │ │ ├── DTCP.cc │ │ ├── DTCP.h │ │ ├── DTCP.ned │ │ ├── DTCPState.cc │ │ ├── DTCPState.h │ │ ├── DTCPState.ned │ │ ├── DTCPTimers.msg │ │ ├── RXControl.cc │ │ └── RXControl.h │ ├── DTP │ │ ├── DTP.cc │ │ ├── DTP.h │ │ ├── DTP.ned │ │ ├── DTPState.cc │ │ ├── DTPState.h │ │ ├── DTPState.ned │ │ ├── DTPTimers.msg │ │ ├── DataTransferPDU.cc │ │ ├── DataTransferPDU.h │ │ ├── DataTransferPDU.msg │ │ ├── DumbGate.cc │ │ ├── DumbGate.h │ │ └── DumbGate.ned │ ├── EFCP.cc │ ├── EFCP.h │ ├── EFCP.ned │ ├── EFCPI.ned │ ├── EFCPInstance.cc │ ├── EFCPInstance.h │ ├── EFCPListeners.cc │ ├── EFCPListeners.h │ ├── EFCPModule.ned │ ├── EFCPPolicySet.cc │ ├── EFCPPolicySet.h │ ├── EFCPTable │ │ ├── EFCPTable.cc │ │ ├── EFCPTable.h │ │ ├── EFCPTable.ned │ │ ├── EFCPTableEntry.cc │ │ └── EFCPTableEntry.h │ ├── EFCP_defs.h │ ├── ManagementPDU.msg │ ├── MockEFCP.ned │ ├── MockEFCPI.cc │ └── MockEFCPI.h ├── Enrollment │ ├── Enrollment.cc │ ├── Enrollment.h │ ├── Enrollment.ned │ ├── EnrollmentBase.cc │ ├── EnrollmentBase.h │ ├── EnrollmentListeners.cc │ ├── EnrollmentListeners.h │ ├── EnrollmentModule.ned │ ├── EnrollmentNotifier.cc │ ├── EnrollmentNotifier.h │ ├── EnrollmentNotifier.ned │ ├── EnrollmentNotifierBase.cc │ ├── EnrollmentNotifierBase.h │ ├── EnrollmentNotifierListeners.cc │ ├── EnrollmentNotifierListeners.h │ ├── EnrollmentObj.cc │ ├── EnrollmentObj.h │ ├── EnrollmentStateTable.cc │ ├── EnrollmentStateTable.h │ ├── EnrollmentStateTable.ned │ ├── EnrollmentStateTableEntry.cc │ ├── EnrollmentStateTableEntry.h │ ├── OperationObj.cc │ └── OperationObj.h ├── FA │ ├── FA.cc │ ├── FA.h │ ├── FA.ned │ ├── FABase.cc │ ├── FABase.h │ ├── FAI.cc │ ├── FAI.h │ ├── FAI.ned │ ├── FAIBase.cc │ ├── FAIBase.h │ ├── FAIListeners.cc │ ├── FAIListeners.h │ ├── FAListeners.cc │ ├── FAListeners.h │ ├── FANotifier.cc │ ├── FANotifier.h │ ├── FANotifier.ned │ ├── FANotifierBase.cc │ ├── FANotifierBase.h │ ├── FANotifierListeners.cc │ ├── FANotifierListeners.h │ ├── FlowAllocator.ned │ ├── NFlowTable.cc │ ├── NFlowTable.h │ ├── NFlowTable.ned │ ├── NFlowTableEntry.cc │ └── NFlowTableEntry.h ├── IPCProcess.ned ├── NSM │ ├── DirectoryForwardingTable.cc │ ├── DirectoryForwardingTable.h │ ├── DirectoryForwardingTable.ned │ ├── LocalDirectoryCache.cc │ ├── LocalDirectoryCache.h │ ├── LocalDirectoryCache.ned │ ├── NSM.cc │ ├── NSM.h │ ├── NSM.ned │ └── NameSpaceManager.ned ├── RA │ ├── NM1FlowTable.cc │ ├── NM1FlowTable.h │ ├── NM1FlowTable.ned │ ├── NM1FlowTableItem.cc │ ├── NM1FlowTableItem.h │ ├── PDUFG │ │ ├── IntBbPDUFG.cc │ │ ├── IntBbPDUFG.h │ │ ├── IntPDUFG.cc │ │ ├── IntPDUFG.h │ │ ├── IntPDUFG.ned │ │ ├── PDUFGNeighbor.cc │ │ └── PDUFGNeighbor.h │ ├── RA.cc │ ├── RA.h │ ├── RA.ned │ ├── RABase.cc │ ├── RABase.h │ ├── RAListeners.cc │ ├── RAListeners.h │ └── ResourceAllocator.ned ├── RIB │ ├── RIBDaemon.ned │ ├── RIBd.cc │ ├── RIBd.h │ ├── RIBd.ned │ ├── RIBdBase.cc │ ├── RIBdBase.h │ ├── RIBdListeners.cc │ ├── RIBdListeners.h │ ├── RIBdSplitter.cc │ ├── RIBdSplitter.h │ └── RIBdSplitter.ned ├── RMT │ ├── RMT.cc │ ├── RMT.h │ ├── RMT.ned │ ├── RMTBase.cc │ ├── RMTBase.h │ ├── RMTListeners.cc │ ├── RMTListeners.h │ ├── RMTModuleAllocator.cc │ ├── RMTModuleAllocator.h │ ├── RMTModuleAllocator.ned │ ├── RMTPort.cc │ ├── RMTPort.h │ ├── RMTPort.ned │ ├── RMTPortWrapper.ned │ ├── RMTQueue.cc │ ├── RMTQueue.h │ ├── RMTQueue.ned │ └── RelayAndMux.ned └── Routing │ ├── IntBbRouting.cc │ ├── IntBbRouting.h │ ├── IntRouting.cc │ ├── IntRouting.h │ ├── IntRouting.ned │ ├── IntRoutingUpdate.cc │ ├── IntRoutingUpdate.h │ ├── RoutingNotifier.cc │ ├── RoutingNotifier.h │ ├── RoutingNotifier.ned │ ├── RoutingNotifierBase.cc │ ├── RoutingNotifierBase.h │ ├── RoutingNotifierListeners.cc │ └── RoutingNotifierListeners.h └── makefrag /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/.cproject -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/.gitignore -------------------------------------------------------------------------------- /.nedfolders: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /.oppbuildspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/.oppbuildspec -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/.project -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/README.md -------------------------------------------------------------------------------- /examples/Athens/Demo/Demo.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Athens/Demo/Demo.ned -------------------------------------------------------------------------------- /examples/Athens/Demo/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Athens/Demo/config.xml -------------------------------------------------------------------------------- /examples/Athens/Demo/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Athens/Demo/omnetpp.ini -------------------------------------------------------------------------------- /examples/Athens/Whatevercast/Whatevercast.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Athens/Whatevercast/Whatevercast.ned -------------------------------------------------------------------------------- /examples/Athens/Whatevercast/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Athens/Whatevercast/config.xml -------------------------------------------------------------------------------- /examples/Athens/Whatevercast/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Athens/Whatevercast/omnetpp.ini -------------------------------------------------------------------------------- /examples/Basics/AllNodes/AllNodes.anf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/AllNodes/AllNodes.anf -------------------------------------------------------------------------------- /examples/Basics/AllNodes/AllNodes.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/AllNodes/AllNodes.ned -------------------------------------------------------------------------------- /examples/Basics/AllNodes/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/AllNodes/config.xml -------------------------------------------------------------------------------- /examples/Basics/AllNodes/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/AllNodes/omnetpp.ini -------------------------------------------------------------------------------- /examples/Basics/SimpleRelay/SimpleRelay.anf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/SimpleRelay/SimpleRelay.anf -------------------------------------------------------------------------------- /examples/Basics/SimpleRelay/SimpleRelay.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/SimpleRelay/SimpleRelay.ned -------------------------------------------------------------------------------- /examples/Basics/SimpleRelay/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/SimpleRelay/config.xml -------------------------------------------------------------------------------- /examples/Basics/SimpleRelay/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/SimpleRelay/omnetpp.ini -------------------------------------------------------------------------------- /examples/Basics/SingleCS/SingleCS.anf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/SingleCS/SingleCS.anf -------------------------------------------------------------------------------- /examples/Basics/SingleCS/SingleCS.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/SingleCS/SingleCS.ned -------------------------------------------------------------------------------- /examples/Basics/SingleCS/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/SingleCS/config.xml -------------------------------------------------------------------------------- /examples/Basics/SingleCS/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/SingleCS/omnetpp.ini -------------------------------------------------------------------------------- /examples/Basics/SmallNetwork/SmallNetwork.anf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/SmallNetwork/SmallNetwork.anf -------------------------------------------------------------------------------- /examples/Basics/SmallNetwork/SmallNetwork.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/SmallNetwork/SmallNetwork.ned -------------------------------------------------------------------------------- /examples/Basics/SmallNetwork/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/SmallNetwork/config.xml -------------------------------------------------------------------------------- /examples/Basics/SmallNetwork/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/SmallNetwork/omnetpp.ini -------------------------------------------------------------------------------- /examples/Basics/SmallNetwork2/SmallNetwork2.anf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/SmallNetwork2/SmallNetwork2.anf -------------------------------------------------------------------------------- /examples/Basics/SmallNetwork2/SmallNetwork2.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/SmallNetwork2/SmallNetwork2.ned -------------------------------------------------------------------------------- /examples/Basics/SmallNetwork2/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/SmallNetwork2/config.xml -------------------------------------------------------------------------------- /examples/Basics/SmallNetwork2/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/SmallNetwork2/omnetpp.ini -------------------------------------------------------------------------------- /examples/Basics/TwoCSs/TwoCSs.anf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/TwoCSs/TwoCSs.anf -------------------------------------------------------------------------------- /examples/Basics/TwoCSs/TwoCSs.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/TwoCSs/TwoCSs.ned -------------------------------------------------------------------------------- /examples/Basics/TwoCSs/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/TwoCSs/config.xml -------------------------------------------------------------------------------- /examples/Basics/TwoCSs/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/TwoCSs/omnetpp.ini -------------------------------------------------------------------------------- /examples/Basics/TwoCSsSimple/TwoCSsSimple.anf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/TwoCSsSimple/TwoCSsSimple.anf -------------------------------------------------------------------------------- /examples/Basics/TwoCSsSimple/TwoCSsSimple.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/TwoCSsSimple/TwoCSsSimple.ned -------------------------------------------------------------------------------- /examples/Basics/TwoCSsSimple/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/TwoCSsSimple/config.xml -------------------------------------------------------------------------------- /examples/Basics/TwoCSsSimple/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Basics/TwoCSsSimple/omnetpp.ini -------------------------------------------------------------------------------- /examples/Congestion/DCCongestion/DCCongestion.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Congestion/DCCongestion/DCCongestion.ned -------------------------------------------------------------------------------- /examples/Congestion/DCCongestion/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Congestion/DCCongestion/config.xml -------------------------------------------------------------------------------- /examples/Congestion/DCCongestion/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Congestion/DCCongestion/description.txt -------------------------------------------------------------------------------- /examples/Congestion/DCCongestion/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Congestion/DCCongestion/omnetpp.ini -------------------------------------------------------------------------------- /examples/Congestion/IEEEICC/SmallNetwork2.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Congestion/IEEEICC/SmallNetwork2.ned -------------------------------------------------------------------------------- /examples/Congestion/IEEEICC/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Congestion/IEEEICC/config.xml -------------------------------------------------------------------------------- /examples/Congestion/IEEEICC/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Congestion/IEEEICC/omnetpp.ini -------------------------------------------------------------------------------- /examples/Congestion/SmallNetwork3/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Congestion/SmallNetwork3/config.xml -------------------------------------------------------------------------------- /examples/Congestion/SmallNetwork3/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Congestion/SmallNetwork3/omnetpp.ini -------------------------------------------------------------------------------- /examples/Congestion/SmallNetwork3/qosreq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Congestion/SmallNetwork3/qosreq.xml -------------------------------------------------------------------------------- /examples/Demos/UseCase1/UseCase1.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Demos/UseCase1/UseCase1.ned -------------------------------------------------------------------------------- /examples/Demos/UseCase1/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Demos/UseCase1/config.xml -------------------------------------------------------------------------------- /examples/Demos/UseCase1/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Demos/UseCase1/omnetpp.ini -------------------------------------------------------------------------------- /examples/Demos/UseCase2/UseCase2.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Demos/UseCase2/UseCase2.ned -------------------------------------------------------------------------------- /examples/Demos/UseCase2/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Demos/UseCase2/config.xml -------------------------------------------------------------------------------- /examples/Demos/UseCase2/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Demos/UseCase2/omnetpp.ini -------------------------------------------------------------------------------- /examples/Demos/UseCase3/UseCase3.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Demos/UseCase3/UseCase3.ned -------------------------------------------------------------------------------- /examples/Demos/UseCase3/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Demos/UseCase3/config.xml -------------------------------------------------------------------------------- /examples/Demos/UseCase3/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Demos/UseCase3/omnetpp.ini -------------------------------------------------------------------------------- /examples/Demos/UseCase4/UseCase4.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Demos/UseCase4/UseCase4.ned -------------------------------------------------------------------------------- /examples/Demos/UseCase4/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Demos/UseCase4/config.xml -------------------------------------------------------------------------------- /examples/Demos/UseCase4/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Demos/UseCase4/omnetpp.ini -------------------------------------------------------------------------------- /examples/Demos/UseCase5/.qtenvrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Demos/UseCase5/.qtenvrc -------------------------------------------------------------------------------- /examples/Demos/UseCase5/Ping.anf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Demos/UseCase5/Ping.anf -------------------------------------------------------------------------------- /examples/Demos/UseCase5/UseCase5.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Demos/UseCase5/UseCase5.ned -------------------------------------------------------------------------------- /examples/Demos/UseCase5/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Demos/UseCase5/config.xml -------------------------------------------------------------------------------- /examples/Demos/UseCase5/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Demos/UseCase5/omnetpp.ini -------------------------------------------------------------------------------- /examples/LB/SmallNetworkLB/SmallNetworkLB.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/LB/SmallNetworkLB/SmallNetworkLB.ned -------------------------------------------------------------------------------- /examples/LB/SmallNetworkLB/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/LB/SmallNetworkLB/config.xml -------------------------------------------------------------------------------- /examples/LB/SmallNetworkLB/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/LB/SmallNetworkLB/omnetpp.ini -------------------------------------------------------------------------------- /examples/LB/SmallNetworkLB/stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/LB/SmallNetworkLB/stats.txt -------------------------------------------------------------------------------- /examples/Routing/BigDC/BigDC.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/BigDC/BigDC.ned -------------------------------------------------------------------------------- /examples/Routing/BigDC/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/BigDC/README -------------------------------------------------------------------------------- /examples/Routing/BigDC/connectionset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/BigDC/connectionset.xml -------------------------------------------------------------------------------- /examples/Routing/BigDC/directory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/BigDC/directory.xml -------------------------------------------------------------------------------- /examples/Routing/BigDC/generator/action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/BigDC/generator/action.php -------------------------------------------------------------------------------- /examples/Routing/BigDC/generator/connections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/BigDC/generator/connections.php -------------------------------------------------------------------------------- /examples/Routing/BigDC/generator/directory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/BigDC/generator/directory.php -------------------------------------------------------------------------------- /examples/Routing/BigDC/generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/BigDC/generator/index.html -------------------------------------------------------------------------------- /examples/Routing/BigDC/generator/ini.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/BigDC/generator/ini.php -------------------------------------------------------------------------------- /examples/Routing/BigDC/generator/ned.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/BigDC/generator/ned.php -------------------------------------------------------------------------------- /examples/Routing/BigDC/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/BigDC/modules.xml -------------------------------------------------------------------------------- /examples/Routing/BigDC/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/BigDC/omnetpp.ini -------------------------------------------------------------------------------- /examples/Routing/BigDC/qoscube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/BigDC/qoscube.xml -------------------------------------------------------------------------------- /examples/Routing/BigDC/qosreq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/BigDC/qosreq.xml -------------------------------------------------------------------------------- /examples/Routing/DDC/DDC.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/DDC/DDC.ned -------------------------------------------------------------------------------- /examples/Routing/DDC/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/DDC/README -------------------------------------------------------------------------------- /examples/Routing/DDC/connectionset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/DDC/connectionset.xml -------------------------------------------------------------------------------- /examples/Routing/DDC/directory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/DDC/directory.xml -------------------------------------------------------------------------------- /examples/Routing/DDC/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/DDC/modules.xml -------------------------------------------------------------------------------- /examples/Routing/DDC/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/DDC/omnetpp.ini -------------------------------------------------------------------------------- /examples/Routing/DDC/qoscube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/DDC/qoscube.xml -------------------------------------------------------------------------------- /examples/Routing/DDC/qosreq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/DDC/qosreq.xml -------------------------------------------------------------------------------- /examples/Routing/DistributedCloudsLS/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/DistributedCloudsLS/config.xml -------------------------------------------------------------------------------- /examples/Routing/DistributedCloudsLS/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/DistributedCloudsLS/omnetpp.ini -------------------------------------------------------------------------------- /examples/Routing/FatTreeTopology/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/FatTreeTopology/config.xml -------------------------------------------------------------------------------- /examples/Routing/FatTreeTopology/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/FatTreeTopology/omnetpp.ini -------------------------------------------------------------------------------- /examples/Routing/FatTreeTopology/preall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/FatTreeTopology/preall.xml -------------------------------------------------------------------------------- /examples/Routing/FatTreeTopology/qos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/FatTreeTopology/qos.xml -------------------------------------------------------------------------------- /examples/Routing/FatTreeTopology/qosreq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/FatTreeTopology/qosreq.xml -------------------------------------------------------------------------------- /examples/Routing/FatTreeTopologyPref/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/FatTreeTopologyPref/README -------------------------------------------------------------------------------- /examples/Routing/FatTreeTopologyPref/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/FatTreeTopologyPref/config.xml -------------------------------------------------------------------------------- /examples/Routing/FatTreeTopologyPref/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/FatTreeTopologyPref/omnetpp.ini -------------------------------------------------------------------------------- /examples/Routing/LatEx/LatEx.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/LatEx/LatEx.ned -------------------------------------------------------------------------------- /examples/Routing/LatEx/QoS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/LatEx/QoS.xml -------------------------------------------------------------------------------- /examples/Routing/LatEx/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/LatEx/config.xml -------------------------------------------------------------------------------- /examples/Routing/LatEx/connections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/LatEx/connections.xml -------------------------------------------------------------------------------- /examples/Routing/LatEx/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/LatEx/omnetpp.ini -------------------------------------------------------------------------------- /examples/Routing/RCoreNet/RCoreNet.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/RCoreNet/RCoreNet.ned -------------------------------------------------------------------------------- /examples/Routing/RCoreNet/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/RCoreNet/README -------------------------------------------------------------------------------- /examples/Routing/RCoreNet/connectionset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/RCoreNet/connectionset.xml -------------------------------------------------------------------------------- /examples/Routing/RCoreNet/directory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/RCoreNet/directory.xml -------------------------------------------------------------------------------- /examples/Routing/RCoreNet/metrics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/RCoreNet/metrics.xml -------------------------------------------------------------------------------- /examples/Routing/RCoreNet/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/RCoreNet/omnetpp.ini -------------------------------------------------------------------------------- /examples/Routing/RCoreNet/qoscube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/RCoreNet/qoscube.xml -------------------------------------------------------------------------------- /examples/Routing/RCoreNet/qosreq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/RCoreNet/qosreq.xml -------------------------------------------------------------------------------- /examples/Routing/SmallNetRouting/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/SmallNetRouting/config.xml -------------------------------------------------------------------------------- /examples/Routing/SmallNetRouting/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/SmallNetRouting/omnetpp.ini -------------------------------------------------------------------------------- /examples/Routing/SmallNetRouting/preall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/SmallNetRouting/preall.xml -------------------------------------------------------------------------------- /examples/Routing/SmallNetRouting/qos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/SmallNetRouting/qos.xml -------------------------------------------------------------------------------- /examples/Routing/SmallNetRouting/qosreq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/SmallNetRouting/qosreq.xml -------------------------------------------------------------------------------- /examples/Routing/UnreliableLinks/QoS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/UnreliableLinks/QoS.xml -------------------------------------------------------------------------------- /examples/Routing/UnreliableLinks/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/UnreliableLinks/README -------------------------------------------------------------------------------- /examples/Routing/UnreliableLinks/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/UnreliableLinks/config.xml -------------------------------------------------------------------------------- /examples/Routing/UnreliableLinks/connections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/UnreliableLinks/connections.xml -------------------------------------------------------------------------------- /examples/Routing/UnreliableLinks/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Routing/UnreliableLinks/omnetpp.ini -------------------------------------------------------------------------------- /examples/Tutorials/DeltaQ_Scheduling/QTA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Tutorials/DeltaQ_Scheduling/QTA.xml -------------------------------------------------------------------------------- /examples/Tutorials/DeltaQ_Scheduling/data0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Tutorials/DeltaQ_Scheduling/data0.xml -------------------------------------------------------------------------------- /examples/Tutorials/DeltaQ_Scheduling/data10X3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Tutorials/DeltaQ_Scheduling/data10X3.xml -------------------------------------------------------------------------------- /examples/Tutorials/DeltaQ_Scheduling/data1X3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Tutorials/DeltaQ_Scheduling/data1X3.xml -------------------------------------------------------------------------------- /examples/Tutorials/DeltaQ_Scheduling/data1X9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Tutorials/DeltaQ_Scheduling/data1X9.xml -------------------------------------------------------------------------------- /examples/Tutorials/DeltaQ_Scheduling/datanull.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Tutorials/DeltaQ_Scheduling/datanull.xml -------------------------------------------------------------------------------- /examples/Tutorials/DeltaQ_Scheduling/directory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Tutorials/DeltaQ_Scheduling/directory.xml -------------------------------------------------------------------------------- /examples/Tutorials/DeltaQ_Scheduling/net.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Tutorials/DeltaQ_Scheduling/net.ned -------------------------------------------------------------------------------- /examples/Tutorials/DeltaQ_Scheduling/omnet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Tutorials/DeltaQ_Scheduling/omnet.ini -------------------------------------------------------------------------------- /examples/Tutorials/DeltaQ_Scheduling/qosreq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Tutorials/DeltaQ_Scheduling/qosreq.xml -------------------------------------------------------------------------------- /examples/Tutorials/DeltaQ_Scheduling/tuto_sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Tutorials/DeltaQ_Scheduling/tuto_sh.png -------------------------------------------------------------------------------- /examples/Tutorials/Topological_DC_Routing/net.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Tutorials/Topological_DC_Routing/net.ned -------------------------------------------------------------------------------- /examples/UPC/Cat/FWDT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Cat/FWDT.xml -------------------------------------------------------------------------------- /examples/UPC/Cat/Q2T.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Cat/Q2T.xml -------------------------------------------------------------------------------- /examples/UPC/Cat/QTA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Cat/QTA.xml -------------------------------------------------------------------------------- /examples/UPC/Cat/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Cat/cat.jpg -------------------------------------------------------------------------------- /examples/UPC/Cat/connectionset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Cat/connectionset.xml -------------------------------------------------------------------------------- /examples/UPC/Cat/data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Cat/data.xml -------------------------------------------------------------------------------- /examples/UPC/Cat/directory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Cat/directory.xml -------------------------------------------------------------------------------- /examples/UPC/Cat/efcp_qoscube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Cat/efcp_qoscube.xml -------------------------------------------------------------------------------- /examples/UPC/Cat/minidata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Cat/minidata.xml -------------------------------------------------------------------------------- /examples/UPC/Cat/net.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Cat/net.ned -------------------------------------------------------------------------------- /examples/UPC/Cat/omnet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Cat/omnet.ini -------------------------------------------------------------------------------- /examples/UPC/Cat/qoscube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Cat/qoscube.xml -------------------------------------------------------------------------------- /examples/UPC/Cat/qosreq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Cat/qosreq.xml -------------------------------------------------------------------------------- /examples/UPC/Cat/shimqoscube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Cat/shimqoscube.xml -------------------------------------------------------------------------------- /examples/UPC/DCa/directory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/DCa/directory.xml -------------------------------------------------------------------------------- /examples/UPC/DCa/net.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/DCa/net.ned -------------------------------------------------------------------------------- /examples/UPC/DCa/omnet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/DCa/omnet.ini -------------------------------------------------------------------------------- /examples/UPC/DCa/qoscube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/DCa/qoscube.xml -------------------------------------------------------------------------------- /examples/UPC/DCa/qosreq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/DCa/qosreq.xml -------------------------------------------------------------------------------- /examples/UPC/DCa/shimconnectionset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/DCa/shimconnectionset.xml -------------------------------------------------------------------------------- /examples/UPC/DCa/shimqoscube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/DCa/shimqoscube.xml -------------------------------------------------------------------------------- /examples/UPC/Mlayer/FWDT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Mlayer/FWDT.xml -------------------------------------------------------------------------------- /examples/UPC/Mlayer/Q2T.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Mlayer/Q2T.xml -------------------------------------------------------------------------------- /examples/UPC/Mlayer/QTA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Mlayer/QTA.xml -------------------------------------------------------------------------------- /examples/UPC/Mlayer/connectionset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Mlayer/connectionset.xml -------------------------------------------------------------------------------- /examples/UPC/Mlayer/directory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Mlayer/directory.xml -------------------------------------------------------------------------------- /examples/UPC/Mlayer/fFWDT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Mlayer/fFWDT.xml -------------------------------------------------------------------------------- /examples/UPC/Mlayer/infection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Mlayer/infection.xml -------------------------------------------------------------------------------- /examples/UPC/Mlayer/metrics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Mlayer/metrics.xml -------------------------------------------------------------------------------- /examples/UPC/Mlayer/net.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Mlayer/net.ned -------------------------------------------------------------------------------- /examples/UPC/Mlayer/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Mlayer/omnetpp.ini -------------------------------------------------------------------------------- /examples/UPC/Mlayer/qoscube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Mlayer/qoscube.xml -------------------------------------------------------------------------------- /examples/UPC/Mlayer/qosreq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Mlayer/qosreq.xml -------------------------------------------------------------------------------- /examples/UPC/Mlayer/shimqoscube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Mlayer/shimqoscube.xml -------------------------------------------------------------------------------- /examples/UPC/Unreliable/QTA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Unreliable/QTA.xml -------------------------------------------------------------------------------- /examples/UPC/Unreliable/connectionset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Unreliable/connectionset.xml -------------------------------------------------------------------------------- /examples/UPC/Unreliable/data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Unreliable/data.xml -------------------------------------------------------------------------------- /examples/UPC/Unreliable/data_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Unreliable/data_simple.xml -------------------------------------------------------------------------------- /examples/UPC/Unreliable/directory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Unreliable/directory.xml -------------------------------------------------------------------------------- /examples/UPC/Unreliable/net.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Unreliable/net.ned -------------------------------------------------------------------------------- /examples/UPC/Unreliable/omnet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Unreliable/omnet.ini -------------------------------------------------------------------------------- /examples/UPC/Unreliable/qoscube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Unreliable/qoscube.xml -------------------------------------------------------------------------------- /examples/UPC/Unreliable/qoscubeCore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Unreliable/qoscubeCore.xml -------------------------------------------------------------------------------- /examples/UPC/Unreliable/qoscubeCore_free.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Unreliable/qoscubeCore_free.xml -------------------------------------------------------------------------------- /examples/UPC/Unreliable/qoscubeNet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Unreliable/qoscubeNet.xml -------------------------------------------------------------------------------- /examples/UPC/Unreliable/qoscubeWl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Unreliable/qoscubeWl.xml -------------------------------------------------------------------------------- /examples/UPC/Unreliable/qosreq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Unreliable/qosreq.xml -------------------------------------------------------------------------------- /examples/UPC/Unreliable/shimconnectionset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Unreliable/shimconnectionset.xml -------------------------------------------------------------------------------- /examples/UPC/Unreliable/shimqoscube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Unreliable/shimqoscube.xml -------------------------------------------------------------------------------- /examples/UPC/Unreliable/voicedata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/UPC/Unreliable/voicedata.xml -------------------------------------------------------------------------------- /examples/Webinars/EFCPPolicyTest/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Webinars/EFCPPolicyTest/config.xml -------------------------------------------------------------------------------- /examples/Webinars/EFCPPolicyTest/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Webinars/EFCPPolicyTest/omnetpp.ini -------------------------------------------------------------------------------- /examples/Webinars/FAPolicyTest/FAPolicyTest.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Webinars/FAPolicyTest/FAPolicyTest.ned -------------------------------------------------------------------------------- /examples/Webinars/FAPolicyTest/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Webinars/FAPolicyTest/config.xml -------------------------------------------------------------------------------- /examples/Webinars/FAPolicyTest/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/examples/Webinars/FAPolicyTest/omnetpp.ini -------------------------------------------------------------------------------- /examples/package.ned: -------------------------------------------------------------------------------- 1 | package rina.examples; 2 | 3 | @license(MIT); 4 | -------------------------------------------------------------------------------- /makefrag: -------------------------------------------------------------------------------- 1 | CXXFLAGS=-std=c++11 -DAUTOIMPORT_OMNETPP_NAMESPACE -------------------------------------------------------------------------------- /makemakefiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/makemakefiles -------------------------------------------------------------------------------- /package.ned: -------------------------------------------------------------------------------- 1 | package rina; 2 | 3 | @license(MIT); 4 | -------------------------------------------------------------------------------- /playground/DAF/AE/AESInt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/DAF/AE/AESInt.cc -------------------------------------------------------------------------------- /playground/DAF/AE/AESInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/DAF/AE/AESInt.h -------------------------------------------------------------------------------- /playground/DAF/AE/AESInt.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/DAF/AE/AESInt.ned -------------------------------------------------------------------------------- /playground/DAF/AE/AEVideo/AEVideo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/DAF/AE/AEVideo/AEVideo.cc -------------------------------------------------------------------------------- /playground/DAF/AE/AEVideo/AEVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/DAF/AE/AEVideo/AEVideo.h -------------------------------------------------------------------------------- /playground/DAF/AE/AEVideo/AEVideo.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/DAF/AE/AEVideo/AEVideo.ned -------------------------------------------------------------------------------- /playground/UPC/Misc/ManagementApps/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Misc/ManagementApps/README -------------------------------------------------------------------------------- /playground/UPC/Routing/DDCLB/DDCLB.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/DDCLB/DDCLB.ned -------------------------------------------------------------------------------- /playground/UPC/Routing/DDCLB/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/DDCLB/README -------------------------------------------------------------------------------- /playground/UPC/Routing/DDCLB/connectionset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/DDCLB/connectionset.xml -------------------------------------------------------------------------------- /playground/UPC/Routing/DDCLB/directory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/DDCLB/directory.xml -------------------------------------------------------------------------------- /playground/UPC/Routing/DDCLB/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/DDCLB/modules.xml -------------------------------------------------------------------------------- /playground/UPC/Routing/DDCLB/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/DDCLB/omnetpp.ini -------------------------------------------------------------------------------- /playground/UPC/Routing/DDCLB/qoscube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/DDCLB/qoscube.xml -------------------------------------------------------------------------------- /playground/UPC/Routing/DDCLB/qosreq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/DDCLB/qosreq.xml -------------------------------------------------------------------------------- /playground/UPC/Routing/DDCLB/stats.txt: -------------------------------------------------------------------------------- 1 | APN,API,AEName,AEInstance,Load 2 | -------------------------------------------------------------------------------- /playground/UPC/Routing/LatExOld/LatEx.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/LatExOld/LatEx.ned -------------------------------------------------------------------------------- /playground/UPC/Routing/LatExOld/QoS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/LatExOld/QoS.xml -------------------------------------------------------------------------------- /playground/UPC/Routing/LatExOld/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/LatExOld/README -------------------------------------------------------------------------------- /playground/UPC/Routing/LatExOld/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/LatExOld/config.xml -------------------------------------------------------------------------------- /playground/UPC/Routing/LatExOld/connections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/LatExOld/connections.xml -------------------------------------------------------------------------------- /playground/UPC/Routing/LatExOld/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/LatExOld/omnetpp.ini -------------------------------------------------------------------------------- /playground/UPC/Routing/LatExOld/stats.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/UPC/Routing/SmallRandNet/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/SmallRandNet/config.xml -------------------------------------------------------------------------------- /playground/UPC/Routing/SmallRandNet/dynamism.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/SmallRandNet/dynamism.txt -------------------------------------------------------------------------------- /playground/UPC/Routing/SmallRandNet/network.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/SmallRandNet/network.ned -------------------------------------------------------------------------------- /playground/UPC/Routing/SmallRandNet/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/SmallRandNet/omnetpp.ini -------------------------------------------------------------------------------- /playground/UPC/Routing/SmallRandNet/preall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/SmallRandNet/preall.xml -------------------------------------------------------------------------------- /playground/UPC/Routing/SmallRandNet/qos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/SmallRandNet/qos.xml -------------------------------------------------------------------------------- /playground/UPC/Routing/SmallRandNet/qosreq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/SmallRandNet/qosreq.xml -------------------------------------------------------------------------------- /playground/UPC/Routing/randPrefNet/DV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/randPrefNet/DV -------------------------------------------------------------------------------- /playground/UPC/Routing/randPrefNet/DV_DV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/randPrefNet/DV_DV -------------------------------------------------------------------------------- /playground/UPC/Routing/randPrefNet/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/randPrefNet/config.xml -------------------------------------------------------------------------------- /playground/UPC/Routing/randPrefNet/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/randPrefNet/omnetpp.ini -------------------------------------------------------------------------------- /playground/UPC/Routing/randPrefNet/randPrefNet.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Routing/randPrefNet/randPrefNet.ned -------------------------------------------------------------------------------- /playground/UPC/Scheduling/CongestedNode/CU.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Scheduling/CongestedNode/CU.xml -------------------------------------------------------------------------------- /playground/UPC/Scheduling/CongestedNode/QoS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Scheduling/CongestedNode/QoS.xml -------------------------------------------------------------------------------- /playground/UPC/Scheduling/CongestedNode/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Scheduling/CongestedNode/config.xml -------------------------------------------------------------------------------- /playground/UPC/Scheduling/CongestedNode2/CU.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Scheduling/CongestedNode2/CU.xml -------------------------------------------------------------------------------- /playground/UPC/Scheduling/CongestedNode2/DL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Scheduling/CongestedNode2/DL -------------------------------------------------------------------------------- /playground/UPC/Scheduling/CongestedNode2/DQ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Scheduling/CongestedNode2/DQ.xml -------------------------------------------------------------------------------- /playground/UPC/Scheduling/CongestedNode2/QoS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Scheduling/CongestedNode2/QoS.xml -------------------------------------------------------------------------------- /playground/UPC/Scheduling/CongestedNode2/eCU.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Scheduling/CongestedNode2/eCU.xml -------------------------------------------------------------------------------- /playground/UPC/Scheduling/CongestedNode2/eDL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Scheduling/CongestedNode2/eDL -------------------------------------------------------------------------------- /playground/UPC/Scheduling/CongestedNode2/eDLa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Scheduling/CongestedNode2/eDLa -------------------------------------------------------------------------------- /playground/UPC/Scheduling/TreeCongestion/BE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Scheduling/TreeCongestion/BE -------------------------------------------------------------------------------- /playground/UPC/Scheduling/TreeCongestion/CU.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Scheduling/TreeCongestion/CU.xml -------------------------------------------------------------------------------- /playground/UPC/Scheduling/TreeCongestion/DL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Scheduling/TreeCongestion/DL -------------------------------------------------------------------------------- /playground/UPC/Scheduling/TreeCongestion/QoS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Scheduling/TreeCongestion/QoS.xml -------------------------------------------------------------------------------- /playground/UPC/Scheduling/TreeCongestion/eCU.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Scheduling/TreeCongestion/eCU.xml -------------------------------------------------------------------------------- /playground/UPC/Scheduling/TwoScheduling/CU.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Scheduling/TwoScheduling/CU.xml -------------------------------------------------------------------------------- /playground/UPC/Scheduling/TwoScheduling/QoS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Scheduling/TwoScheduling/QoS.xml -------------------------------------------------------------------------------- /playground/UPC/Scheduling/TwoScheduling/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Scheduling/TwoScheduling/config.xml -------------------------------------------------------------------------------- /playground/UPC/Scheduling/TwoScheduling9/9x5DL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Scheduling/TwoScheduling9/9x5DL -------------------------------------------------------------------------------- /playground/UPC/Scheduling/TwoScheduling9/CU.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Scheduling/TwoScheduling9/CU.xml -------------------------------------------------------------------------------- /playground/UPC/Scheduling/TwoScheduling9/QoS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Scheduling/TwoScheduling9/QoS.xml -------------------------------------------------------------------------------- /playground/UPC/Scheduling/TwoScheduling9/eCU.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/playground/UPC/Scheduling/TwoScheduling9/eCU.xml -------------------------------------------------------------------------------- /policies/DAF/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /policies/DIF/EFCP/DTCP/ECN/ECNPolicyBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/EFCP/DTCP/ECN/ECNPolicyBase.cc -------------------------------------------------------------------------------- /policies/DIF/EFCP/DTCP/ECN/ECNPolicyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/EFCP/DTCP/ECN/ECNPolicyBase.h -------------------------------------------------------------------------------- /policies/DIF/EFCP/DTCP/ECN/IntECNPolicy.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/EFCP/DTCP/ECN/IntECNPolicy.ned -------------------------------------------------------------------------------- /policies/DIF/EFCP/DTCP/RcvrAck/RcvrAckPolicyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/EFCP/DTCP/RcvrAck/RcvrAckPolicyBase.h -------------------------------------------------------------------------------- /policies/DIF/EFCP/DTCP/RcvrFC/IntRcvrFCPolicy.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/EFCP/DTCP/RcvrFC/IntRcvrFCPolicy.ned -------------------------------------------------------------------------------- /policies/DIF/EFCP/DTCP/RcvrFC/RcvrFCPolicyBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/EFCP/DTCP/RcvrFC/RcvrFCPolicyBase.cc -------------------------------------------------------------------------------- /policies/DIF/EFCP/DTCP/RcvrFC/RcvrFCPolicyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/EFCP/DTCP/RcvrFC/RcvrFCPolicyBase.h -------------------------------------------------------------------------------- /policies/DIF/EFCP/EFCPPolicy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/EFCP/EFCPPolicy.cc -------------------------------------------------------------------------------- /policies/DIF/EFCP/EFCPPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/EFCP/EFCPPolicy.h -------------------------------------------------------------------------------- /policies/DIF/FA/AllocateRetry/AllocateRetryBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/FA/AllocateRetry/AllocateRetryBase.h -------------------------------------------------------------------------------- /policies/DIF/FA/AllocateRetry/IAllocateRetry.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/FA/AllocateRetry/IAllocateRetry.ned -------------------------------------------------------------------------------- /policies/DIF/FA/AllocateRetry/NoRetry/NoRetry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/FA/AllocateRetry/NoRetry/NoRetry.cc -------------------------------------------------------------------------------- /policies/DIF/FA/AllocateRetry/NoRetry/NoRetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/FA/AllocateRetry/NoRetry/NoRetry.h -------------------------------------------------------------------------------- /policies/DIF/FA/AllocateRetry/NoRetry/NoRetry.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/FA/AllocateRetry/NoRetry/NoRetry.ned -------------------------------------------------------------------------------- /policies/DIF/FA/MultilevelQoS/IAMultilevelQoS.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/FA/MultilevelQoS/IAMultilevelQoS.ned -------------------------------------------------------------------------------- /policies/DIF/FA/MultilevelQoS/MultilevelQoS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/FA/MultilevelQoS/MultilevelQoS.h -------------------------------------------------------------------------------- /policies/DIF/FA/NewFlowRequest/INewFlowRequest.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/FA/NewFlowRequest/INewFlowRequest.ned -------------------------------------------------------------------------------- /policies/DIF/RA/PDUFG/GRE/ClosRouting/GRE_Clos0R.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/PDUFG/GRE/ClosRouting/GRE_Clos0R.h -------------------------------------------------------------------------------- /policies/DIF/RA/PDUFG/GRE/ClosRouting/GRE_Clos1R.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/PDUFG/GRE/ClosRouting/GRE_Clos1R.h -------------------------------------------------------------------------------- /policies/DIF/RA/PDUFG/GRE/ClosRouting/GRE_Clos2R.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/PDUFG/GRE/ClosRouting/GRE_Clos2R.h -------------------------------------------------------------------------------- /policies/DIF/RA/PDUFG/GRE/ClosRouting/GRE_ClosR.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/PDUFG/GRE/ClosRouting/GRE_ClosR.cc -------------------------------------------------------------------------------- /policies/DIF/RA/PDUFG/GRE/ClosRouting/GRE_ClosR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/PDUFG/GRE/ClosRouting/GRE_ClosR.h -------------------------------------------------------------------------------- /policies/DIF/RA/PDUFG/GRE/ClosStatic/GRE_Clos0S.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/PDUFG/GRE/ClosStatic/GRE_Clos0S.cc -------------------------------------------------------------------------------- /policies/DIF/RA/PDUFG/GRE/ClosStatic/GRE_Clos0S.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/PDUFG/GRE/ClosStatic/GRE_Clos0S.h -------------------------------------------------------------------------------- /policies/DIF/RA/PDUFG/GRE/ClosStatic/GRE_Clos1S.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/PDUFG/GRE/ClosStatic/GRE_Clos1S.cc -------------------------------------------------------------------------------- /policies/DIF/RA/PDUFG/GRE/ClosStatic/GRE_Clos1S.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/PDUFG/GRE/ClosStatic/GRE_Clos1S.h -------------------------------------------------------------------------------- /policies/DIF/RA/PDUFG/GRE/ClosStatic/GRE_Clos2S.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/PDUFG/GRE/ClosStatic/GRE_Clos2S.cc -------------------------------------------------------------------------------- /policies/DIF/RA/PDUFG/GRE/ClosStatic/GRE_Clos2S.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/PDUFG/GRE/ClosStatic/GRE_Clos2S.h -------------------------------------------------------------------------------- /policies/DIF/RA/PDUFG/GRE/Simple/GRE_Simple.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/PDUFG/GRE/Simple/GRE_Simple.cc -------------------------------------------------------------------------------- /policies/DIF/RA/PDUFG/GRE/Simple/GRE_Simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/PDUFG/GRE/Simple/GRE_Simple.h -------------------------------------------------------------------------------- /policies/DIF/RA/PDUFG/GRE/Simple/GRE_Simple.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/PDUFG/GRE/Simple/GRE_Simple.ned -------------------------------------------------------------------------------- /policies/DIF/RA/PDUFG/IPLSPDUFG/IPLSPDUFG.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/PDUFG/IPLSPDUFG/IPLSPDUFG.cc -------------------------------------------------------------------------------- /policies/DIF/RA/PDUFG/IPLSPDUFG/IPLSPDUFG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/PDUFG/IPLSPDUFG/IPLSPDUFG.h -------------------------------------------------------------------------------- /policies/DIF/RA/PDUFG/LatGenerator/LatGenerator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/PDUFG/LatGenerator/LatGenerator.cc -------------------------------------------------------------------------------- /policies/DIF/RA/PDUFG/LatGenerator/LatGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/PDUFG/LatGenerator/LatGenerator.h -------------------------------------------------------------------------------- /policies/DIF/RA/PDUFG/NeiGen/NeiGen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/PDUFG/NeiGen/NeiGen.cc -------------------------------------------------------------------------------- /policies/DIF/RA/PDUFG/NeiGen/NeiGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/PDUFG/NeiGen/NeiGen.h -------------------------------------------------------------------------------- /policies/DIF/RA/PDUFG/NeiGen/NeiGen.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/PDUFG/NeiGen/NeiGen.ned -------------------------------------------------------------------------------- /policies/DIF/RA/PDUFG/StatGen/StatGen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/PDUFG/StatGen/StatGen.cc -------------------------------------------------------------------------------- /policies/DIF/RA/PDUFG/StatGen/StatGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/PDUFG/StatGen/StatGen.h -------------------------------------------------------------------------------- /policies/DIF/RA/PDUFG/StatGen/StatGen.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/PDUFG/StatGen/StatGen.ned -------------------------------------------------------------------------------- /policies/DIF/RA/QueueAlloc/IntRAQueueAlloc.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/QueueAlloc/IntRAQueueAlloc.ned -------------------------------------------------------------------------------- /policies/DIF/RA/QueueAlloc/QueueAllocBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/QueueAlloc/QueueAllocBase.cc -------------------------------------------------------------------------------- /policies/DIF/RA/QueueAlloc/QueueAllocBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/QueueAlloc/QueueAllocBase.h -------------------------------------------------------------------------------- /policies/DIF/RA/QueueIDGen/IDPerNCU/IDPerNCU.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/QueueIDGen/IDPerNCU/IDPerNCU.cc -------------------------------------------------------------------------------- /policies/DIF/RA/QueueIDGen/IDPerNCU/IDPerNCU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/QueueIDGen/IDPerNCU/IDPerNCU.h -------------------------------------------------------------------------------- /policies/DIF/RA/QueueIDGen/IDPerNCU/IDPerNCU.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/QueueIDGen/IDPerNCU/IDPerNCU.ned -------------------------------------------------------------------------------- /policies/DIF/RA/QueueIDGen/IDPerNFlow/IDPerNFlow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/QueueIDGen/IDPerNFlow/IDPerNFlow.h -------------------------------------------------------------------------------- /policies/DIF/RA/QueueIDGen/IDPerNQoS/IDPerNQoS.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/QueueIDGen/IDPerNQoS/IDPerNQoS.cc -------------------------------------------------------------------------------- /policies/DIF/RA/QueueIDGen/IDPerNQoS/IDPerNQoS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/QueueIDGen/IDPerNQoS/IDPerNQoS.h -------------------------------------------------------------------------------- /policies/DIF/RA/QueueIDGen/IDPerNQoS/IDPerNQoS.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/QueueIDGen/IDPerNQoS/IDPerNQoS.ned -------------------------------------------------------------------------------- /policies/DIF/RA/QueueIDGen/IntRAQueueIDGen.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/QueueIDGen/IntRAQueueIDGen.ned -------------------------------------------------------------------------------- /policies/DIF/RA/QueueIDGen/QueueIDGenBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/QueueIDGen/QueueIDGenBase.cc -------------------------------------------------------------------------------- /policies/DIF/RA/QueueIDGen/QueueIDGenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/QueueIDGen/QueueIDGenBase.h -------------------------------------------------------------------------------- /policies/DIF/RA/QueueIDGen/SingleID/SingleID.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/QueueIDGen/SingleID/SingleID.cc -------------------------------------------------------------------------------- /policies/DIF/RA/QueueIDGen/SingleID/SingleID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/QueueIDGen/SingleID/SingleID.h -------------------------------------------------------------------------------- /policies/DIF/RA/QueueIDGen/SingleID/SingleID.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RA/QueueIDGen/SingleID/SingleID.ned -------------------------------------------------------------------------------- /policies/DIF/RMT/MaxQueue/DumbMaxQ/DumbMaxQ.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/MaxQueue/DumbMaxQ/DumbMaxQ.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/MaxQueue/DumbMaxQ/DumbMaxQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/MaxQueue/DumbMaxQ/DumbMaxQ.h -------------------------------------------------------------------------------- /policies/DIF/RMT/MaxQueue/DumbMaxQ/DumbMaxQ.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/MaxQueue/DumbMaxQ/DumbMaxQ.ned -------------------------------------------------------------------------------- /policies/DIF/RMT/MaxQueue/ECNMarker/ECNMarker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/MaxQueue/ECNMarker/ECNMarker.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/MaxQueue/ECNMarker/ECNMarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/MaxQueue/ECNMarker/ECNMarker.h -------------------------------------------------------------------------------- /policies/DIF/RMT/MaxQueue/ECNMarker/ECNMarker.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/MaxQueue/ECNMarker/ECNMarker.ned -------------------------------------------------------------------------------- /policies/DIF/RMT/MaxQueue/IntRMTMaxQPolicy.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/MaxQueue/IntRMTMaxQPolicy.ned -------------------------------------------------------------------------------- /policies/DIF/RMT/MaxQueue/REDDropper/REDDropper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/MaxQueue/REDDropper/REDDropper.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/MaxQueue/REDDropper/REDDropper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/MaxQueue/REDDropper/REDDropper.h -------------------------------------------------------------------------------- /policies/DIF/RMT/MaxQueue/RMTMaxQBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/MaxQueue/RMTMaxQBase.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/MaxQueue/RMTMaxQBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/MaxQueue/RMTMaxQBase.h -------------------------------------------------------------------------------- /policies/DIF/RMT/MaxQueue/TailDrop/TailDrop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/MaxQueue/TailDrop/TailDrop.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/MaxQueue/TailDrop/TailDrop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/MaxQueue/TailDrop/TailDrop.h -------------------------------------------------------------------------------- /policies/DIF/RMT/MaxQueue/TailDrop/TailDrop.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/MaxQueue/TailDrop/TailDrop.ned -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/BEMonitor/BEMonitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/BEMonitor/BEMonitor.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/BEMonitor/BEMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/BEMonitor/BEMonitor.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/BEMonitor/BEMonitor.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/BEMonitor/BEMonitor.ned -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/DLMonitor/DLMonitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/DLMonitor/DLMonitor.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/DLMonitor/DLMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/DLMonitor/DLMonitor.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/DLMonitor/DLMonitor.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/DLMonitor/DLMonitor.ned -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/DQMonitor/.gitignore: -------------------------------------------------------------------------------- 1 | /DQMonitor.cc 2 | -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/DQMonitor/DQMonitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/DQMonitor/DQMonitor.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/DQMonitor/DQMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/DQMonitor/DQMonitor.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/DQMonitor/DQMonitor.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/DQMonitor/DQMonitor.ned -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/DQMonitor/dlCUInfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/DQMonitor/dlCUInfo.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/DQMonitor/dlCUInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/DQMonitor/dlCUInfo.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/IntRMTQMonitorPolicy.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/IntRMTQMonitorPolicy.ned -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/Mux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/Mux.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/Mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/Mux.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/Mux0/Mux0.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/Mux0/Mux0.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/Mux0/Mux0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/Mux0/Mux0.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/Mux1/Mux1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/Mux1/Mux1.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/Mux1/Mux1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/Mux1/Mux1.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/Mux2/Mux2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/Mux2/Mux2.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/Mux2/Mux2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/Mux2/Mux2.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/Mux3/Mux3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/Mux3/Mux3.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/Mux3/Mux3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/Mux3/Mux3.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/Mux4/Mux4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/Mux4/Mux4.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/Mux4/Mux4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/Mux4/Mux4.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/Mux5/Mux5.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/Mux5/Mux5.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/Mux5/Mux5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/Mux5/Mux5.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/PS.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/PS.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/PS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/PS.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/PS0/PS0.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/PS0/PS0.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/PS0/PS0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/PS0/PS0.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/PS1/PS1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/PS1/PS1.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/PS1/PS1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/PS1/PS1.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/PS2/PS2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/PS2/PS2.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/PS2/PS2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/PS2/PS2.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/PS3/PS3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/PS3/PS3.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/PS3/PS3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/PS3/PS3.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/PS4/PS4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/PS4/PS4.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/PS4/PS4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/PS4/PS4.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/QTAMonitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/QTAMonitor.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/QTAMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/QTAMonitor.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/QTAMux/QTAMonitor.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/QTAMux/QTAMonitor.ned -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/REDMonitor/REDMonitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/REDMonitor/REDMonitor.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/REDMonitor/REDMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/REDMonitor/REDMonitor.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/REDMonitor/REDMonitor.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/REDMonitor/REDMonitor.ned -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/RMTQMonitorBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/RMTQMonitorBase.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/RMTQMonitorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/RMTQMonitorBase.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/TKMonitor/TKMonitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/TKMonitor/TKMonitor.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/TKMonitor/TKMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/TKMonitor/TKMonitor.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/TKMonitor/TKMonitor.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/TKMonitor/TKMonitor.ned -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/eDLMonitor/eDLMonitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/eDLMonitor/eDLMonitor.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/eDLMonitor/eDLMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/eDLMonitor/eDLMonitor.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Monitor/eDLMonitor/eDLMonitor.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Monitor/eDLMonitor/eDLMonitor.ned -------------------------------------------------------------------------------- /policies/DIF/RMT/PDUForwarding/GREFWD/Clos/Clos.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/PDUForwarding/GREFWD/Clos/Clos.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/PDUForwarding/GREFWD/Clos/Clos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/PDUForwarding/GREFWD/Clos/Clos.h -------------------------------------------------------------------------------- /policies/DIF/RMT/PDUForwarding/GREFWD/GREFWD.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/PDUForwarding/GREFWD/GREFWD.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/PDUForwarding/GREFWD/GREFWD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/PDUForwarding/GREFWD/GREFWD.h -------------------------------------------------------------------------------- /policies/DIF/RMT/PDUForwarding/GREFWD/GREFWD.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/PDUForwarding/GREFWD/GREFWD.ned -------------------------------------------------------------------------------- /policies/DIF/RMT/PDUForwarding/IntMMForwarding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/PDUForwarding/IntMMForwarding.h -------------------------------------------------------------------------------- /policies/DIF/RMT/PDUForwarding/IntMiniForwarding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/PDUForwarding/IntMiniForwarding.h -------------------------------------------------------------------------------- /policies/DIF/RMT/PDUForwarding/IntPDUForwarding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/PDUForwarding/IntPDUForwarding.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/PDUForwarding/IntPDUForwarding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/PDUForwarding/IntPDUForwarding.h -------------------------------------------------------------------------------- /policies/DIF/RMT/PDUForwarding/IntQoSMForwarding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/PDUForwarding/IntQoSMForwarding.h -------------------------------------------------------------------------------- /policies/DIF/RMT/PDUForwarding/NeiTable/NeiTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/PDUForwarding/NeiTable/NeiTable.h -------------------------------------------------------------------------------- /policies/DIF/RMT/PDUForwarding/Q2FwdT/Q2FwdT.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/PDUForwarding/Q2FwdT/Q2FwdT.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/PDUForwarding/Q2FwdT/Q2FwdT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/PDUForwarding/Q2FwdT/Q2FwdT.h -------------------------------------------------------------------------------- /policies/DIF/RMT/PDUForwarding/Q2FwdT/Q2FwdT.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/PDUForwarding/Q2FwdT/Q2FwdT.ned -------------------------------------------------------------------------------- /policies/DIF/RMT/PDUForwarding/QoSTable/QoSTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/PDUForwarding/QoSTable/QoSTable.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Scheduler/DQSch/DQSch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Scheduler/DQSch/DQSch.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Scheduler/DQSch/DQSch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Scheduler/DQSch/DQSch.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Scheduler/DQSch/DQSch.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Scheduler/DQSch/DQSch.ned -------------------------------------------------------------------------------- /policies/DIF/RMT/Scheduler/DumbSch/DumbSch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Scheduler/DumbSch/DumbSch.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Scheduler/DumbSch/DumbSch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Scheduler/DumbSch/DumbSch.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Scheduler/DumbSch/DumbSch.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Scheduler/DumbSch/DumbSch.ned -------------------------------------------------------------------------------- /policies/DIF/RMT/Scheduler/QTASch/QTASch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Scheduler/QTASch/QTASch.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Scheduler/QTASch/QTASch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Scheduler/QTASch/QTASch.h -------------------------------------------------------------------------------- /policies/DIF/RMT/Scheduler/QTASch/QTASch.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Scheduler/QTASch/QTASch.ned -------------------------------------------------------------------------------- /policies/DIF/RMT/Scheduler/RMTSchedulingBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Scheduler/RMTSchedulingBase.cc -------------------------------------------------------------------------------- /policies/DIF/RMT/Scheduler/RMTSchedulingBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/RMT/Scheduler/RMTSchedulingBase.h -------------------------------------------------------------------------------- /policies/DIF/Routing/CentralRouting/RoutingDumb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/CentralRouting/RoutingDumb.cc -------------------------------------------------------------------------------- /policies/DIF/Routing/CentralRouting/RoutingDumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/CentralRouting/RoutingDumb.h -------------------------------------------------------------------------------- /policies/DIF/Routing/DCRouting/Edge_Routing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DCRouting/Edge_Routing.cc -------------------------------------------------------------------------------- /policies/DIF/Routing/DCRouting/Edge_Routing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DCRouting/Edge_Routing.h -------------------------------------------------------------------------------- /policies/DIF/Routing/DCRouting/Edge_Routing.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DCRouting/Edge_Routing.ned -------------------------------------------------------------------------------- /policies/DIF/Routing/DCRouting/Fabric_Routing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DCRouting/Fabric_Routing.cc -------------------------------------------------------------------------------- /policies/DIF/Routing/DCRouting/Fabric_Routing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DCRouting/Fabric_Routing.h -------------------------------------------------------------------------------- /policies/DIF/Routing/DCRouting/Fabric_Routing.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DCRouting/Fabric_Routing.ned -------------------------------------------------------------------------------- /policies/DIF/Routing/DCRouting/IntDCRouting.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DCRouting/IntDCRouting.cc -------------------------------------------------------------------------------- /policies/DIF/Routing/DCRouting/IntDCRouting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DCRouting/IntDCRouting.h -------------------------------------------------------------------------------- /policies/DIF/Routing/DCRouting/Spine_Routing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DCRouting/Spine_Routing.cc -------------------------------------------------------------------------------- /policies/DIF/Routing/DCRouting/Spine_Routing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DCRouting/Spine_Routing.h -------------------------------------------------------------------------------- /policies/DIF/Routing/DCRouting/Spine_Routing.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DCRouting/Spine_Routing.ned -------------------------------------------------------------------------------- /policies/DIF/Routing/DCRouting/TOR_Routing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DCRouting/TOR_Routing.cc -------------------------------------------------------------------------------- /policies/DIF/Routing/DCRouting/TOR_Routing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DCRouting/TOR_Routing.h -------------------------------------------------------------------------------- /policies/DIF/Routing/DCRouting/TOR_Routing.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DCRouting/TOR_Routing.ned -------------------------------------------------------------------------------- /policies/DIF/Routing/DCRouting/iDC_Routing.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DCRouting/iDC_Routing.ned -------------------------------------------------------------------------------- /policies/DIF/Routing/DomainRouting/DV/DV.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DomainRouting/DV/DV.cc -------------------------------------------------------------------------------- /policies/DIF/Routing/DomainRouting/DV/DV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DomainRouting/DV/DV.h -------------------------------------------------------------------------------- /policies/DIF/Routing/DomainRouting/LS/LS.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DomainRouting/LS/LS.cc -------------------------------------------------------------------------------- /policies/DIF/Routing/DomainRouting/LS/LS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DomainRouting/LS/LS.h -------------------------------------------------------------------------------- /policies/DIF/Routing/DomainRouting/Routing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DomainRouting/Routing.cc -------------------------------------------------------------------------------- /policies/DIF/Routing/DomainRouting/Routing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DomainRouting/Routing.h -------------------------------------------------------------------------------- /policies/DIF/Routing/DomainRouting/rModule.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DomainRouting/rModule.cc -------------------------------------------------------------------------------- /policies/DIF/Routing/DomainRouting/rModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DomainRouting/rModule.h -------------------------------------------------------------------------------- /policies/DIF/Routing/DummyRouting/DummyRouting.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DummyRouting/DummyRouting.cc -------------------------------------------------------------------------------- /policies/DIF/Routing/DummyRouting/DummyRouting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DummyRouting/DummyRouting.h -------------------------------------------------------------------------------- /policies/DIF/Routing/DummyRouting/DummyRouting.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/DummyRouting/DummyRouting.ned -------------------------------------------------------------------------------- /policies/DIF/Routing/common/DV_Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/common/DV_Module.h -------------------------------------------------------------------------------- /policies/DIF/Routing/common/GraphCL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/common/GraphCL.h -------------------------------------------------------------------------------- /policies/DIF/Routing/common/LS_Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/common/LS_Module.h -------------------------------------------------------------------------------- /policies/DIF/Routing/common/Routing_Alg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/common/Routing_Alg.h -------------------------------------------------------------------------------- /policies/DIF/Routing/common/Routing_Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/common/Routing_Module.h -------------------------------------------------------------------------------- /policies/DIF/Routing/common/nhLMetric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/common/nhLMetric.h -------------------------------------------------------------------------------- /policies/DIF/Routing/eRouting/eLink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/eRouting/eLink.cc -------------------------------------------------------------------------------- /policies/DIF/Routing/eRouting/eLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/eRouting/eLink.h -------------------------------------------------------------------------------- /policies/DIF/Routing/eRouting/eRouting.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/eRouting/eRouting.cc -------------------------------------------------------------------------------- /policies/DIF/Routing/eRouting/eRouting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/eRouting/eRouting.h -------------------------------------------------------------------------------- /policies/DIF/Routing/eRouting/eRouting.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/Routing/eRouting/eRouting.ned -------------------------------------------------------------------------------- /policies/DIF/SDUProtection/FixedDelay/FixedDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/SDUProtection/FixedDelay/FixedDelay.h -------------------------------------------------------------------------------- /policies/DIF/SDUProtection/IntSDUProtection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/SDUProtection/IntSDUProtection.cc -------------------------------------------------------------------------------- /policies/DIF/SDUProtection/IntSDUProtection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/SDUProtection/IntSDUProtection.h -------------------------------------------------------------------------------- /policies/DIF/SDUProtection/IntSDUProtection.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/DIF/SDUProtection/IntSDUProtection.ned -------------------------------------------------------------------------------- /policies/makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/policies/makefrag -------------------------------------------------------------------------------- /rinasim.doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/rinasim.doxyfile -------------------------------------------------------------------------------- /scripts/fingerprints.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/scripts/fingerprints.sh -------------------------------------------------------------------------------- /scripts/slocstats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/scripts/slocstats.sh -------------------------------------------------------------------------------- /simulate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/simulate.sh -------------------------------------------------------------------------------- /src/Addons/Actions/FlowKiller/FlowKiller.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Addons/Actions/FlowKiller/FlowKiller.cc -------------------------------------------------------------------------------- /src/Addons/Actions/FlowKiller/FlowKiller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Addons/Actions/FlowKiller/FlowKiller.h -------------------------------------------------------------------------------- /src/Addons/Actions/FlowKiller/FlowKiller.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Addons/Actions/FlowKiller/FlowKiller.ned -------------------------------------------------------------------------------- /src/Addons/Channels/EthChannel/EthChannel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Addons/Channels/EthChannel/EthChannel.cc -------------------------------------------------------------------------------- /src/Addons/Channels/EthChannel/EthChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Addons/Channels/EthChannel/EthChannel.h -------------------------------------------------------------------------------- /src/Addons/Channels/EthChannel/EthChannel.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Addons/Channels/EthChannel/EthChannel.ned -------------------------------------------------------------------------------- /src/Addons/DataInjectors/CS/HomeRouter.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Addons/DataInjectors/CS/HomeRouter.ned -------------------------------------------------------------------------------- /src/Addons/DataInjectors/CS/Inf_EndPoint.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Addons/DataInjectors/CS/Inf_EndPoint.ned -------------------------------------------------------------------------------- /src/Addons/DataInjectors/CS/Inf_Router.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Addons/DataInjectors/CS/Inf_Router.ned -------------------------------------------------------------------------------- /src/Addons/DataInjectors/CS/Inf_Switch.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Addons/DataInjectors/CS/Inf_Switch.ned -------------------------------------------------------------------------------- /src/Addons/DataInjectors/FlowsSimulation/Inj_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Addons/DataInjectors/FlowsSimulation/Inj_t.h -------------------------------------------------------------------------------- /src/Addons/DataInjectors/Infection_t.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Addons/DataInjectors/Infection_t.ned -------------------------------------------------------------------------------- /src/CS/BorderRouter.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/BorderRouter.ned -------------------------------------------------------------------------------- /src/CS/BorderRouter2n1nm.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/BorderRouter2n1nm.ned -------------------------------------------------------------------------------- /src/CS/BorderRouter2n1nmLeft.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/BorderRouter2n1nmLeft.ned -------------------------------------------------------------------------------- /src/CS/BorderRouter3n1nm.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/BorderRouter3n1nm.ned -------------------------------------------------------------------------------- /src/CS/DC_AS.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/DC_AS.ned -------------------------------------------------------------------------------- /src/CS/DC_CR.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/DC_CR.ned -------------------------------------------------------------------------------- /src/CS/DC_Server.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/DC_Server.ned -------------------------------------------------------------------------------- /src/CS/DC_TOR.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/DC_TOR.ned -------------------------------------------------------------------------------- /src/CS/DC_VM.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/DC_VM.ned -------------------------------------------------------------------------------- /src/CS/Host1AP.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/Host1AP.ned -------------------------------------------------------------------------------- /src/CS/Host1APNInt.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/Host1APNInt.ned -------------------------------------------------------------------------------- /src/CS/Host1AP_Adm.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/Host1AP_Adm.ned -------------------------------------------------------------------------------- /src/CS/Host2AP.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/Host2AP.ned -------------------------------------------------------------------------------- /src/CS/Host3NAPMInt.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/Host3NAPMInt.ned -------------------------------------------------------------------------------- /src/CS/HostNAP.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/HostNAP.ned -------------------------------------------------------------------------------- /src/CS/HostNAP_Adm.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/HostNAP_Adm.ned -------------------------------------------------------------------------------- /src/CS/InteriorRouter2Int.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/InteriorRouter2Int.ned -------------------------------------------------------------------------------- /src/CS/InteriorRouter3Int.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/InteriorRouter3Int.ned -------------------------------------------------------------------------------- /src/CS/InteriorRouter4Int.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/InteriorRouter4Int.ned -------------------------------------------------------------------------------- /src/CS/InteriorRouterNInt.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/InteriorRouterNInt.ned -------------------------------------------------------------------------------- /src/CS/InteriorRouterNInt_Adm.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/InteriorRouterNInt_Adm.ned -------------------------------------------------------------------------------- /src/CS/InteriorRouterNMInt.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/InteriorRouterNMInt.ned -------------------------------------------------------------------------------- /src/CS/Manager.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/Manager.ned -------------------------------------------------------------------------------- /src/CS/Shim_M_Adm.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/Shim_M_Adm.ned -------------------------------------------------------------------------------- /src/CS/TestHost1AP.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/TestHost1AP.ned -------------------------------------------------------------------------------- /src/CS/VIFIBNode.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/VIFIBNode.ned -------------------------------------------------------------------------------- /src/CS/VIFIBNodeGL1.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/VIFIBNodeGL1.ned -------------------------------------------------------------------------------- /src/CS/VIFIBNodeGL2.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/VIFIBNodeGL2.ned -------------------------------------------------------------------------------- /src/CS/ViFIB.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/ViFIB.ned -------------------------------------------------------------------------------- /src/CS/ViFIB_MGM.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/CS/ViFIB_MGM.ned -------------------------------------------------------------------------------- /src/Common/APN.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/APN.cc -------------------------------------------------------------------------------- /src/Common/APN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/APN.h -------------------------------------------------------------------------------- /src/Common/APNamingInfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/APNamingInfo.cc -------------------------------------------------------------------------------- /src/Common/APNamingInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/APNamingInfo.h -------------------------------------------------------------------------------- /src/Common/Address.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/Address.cc -------------------------------------------------------------------------------- /src/Common/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/Address.h -------------------------------------------------------------------------------- /src/Common/CDAPProcessingBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/CDAPProcessingBase.cc -------------------------------------------------------------------------------- /src/Common/CDAPProcessingBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/CDAPProcessingBase.h -------------------------------------------------------------------------------- /src/Common/CongestionDescriptor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/CongestionDescriptor.cc -------------------------------------------------------------------------------- /src/Common/CongestionDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/CongestionDescriptor.h -------------------------------------------------------------------------------- /src/Common/ConnectionId.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/ConnectionId.cc -------------------------------------------------------------------------------- /src/Common/ConnectionId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/ConnectionId.h -------------------------------------------------------------------------------- /src/Common/DAP.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/DAP.cc -------------------------------------------------------------------------------- /src/Common/DAP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/DAP.h -------------------------------------------------------------------------------- /src/Common/ExternConsts.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/ExternConsts.cc -------------------------------------------------------------------------------- /src/Common/ExternConsts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/ExternConsts.h -------------------------------------------------------------------------------- /src/Common/Flow.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/Flow.cc -------------------------------------------------------------------------------- /src/Common/Flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/Flow.h -------------------------------------------------------------------------------- /src/Common/PDU.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/PDU.cc -------------------------------------------------------------------------------- /src/Common/PDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/PDU.h -------------------------------------------------------------------------------- /src/Common/PDU.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/PDU.msg -------------------------------------------------------------------------------- /src/Common/Policy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/Policy.cc -------------------------------------------------------------------------------- /src/Common/Policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/Policy.h -------------------------------------------------------------------------------- /src/Common/QoSCube.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/QoSCube.cc -------------------------------------------------------------------------------- /src/Common/QoSCube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/QoSCube.h -------------------------------------------------------------------------------- /src/Common/QoSReq.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/QoSReq.cc -------------------------------------------------------------------------------- /src/Common/QoSReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/QoSReq.h -------------------------------------------------------------------------------- /src/Common/QueueInfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/QueueInfo.cc -------------------------------------------------------------------------------- /src/Common/QueueInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/QueueInfo.h -------------------------------------------------------------------------------- /src/Common/RINASignals.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/RINASignals.cc -------------------------------------------------------------------------------- /src/Common/RINASignals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/RINASignals.h -------------------------------------------------------------------------------- /src/Common/SDU.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/SDU.cc -------------------------------------------------------------------------------- /src/Common/SDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/SDU.h -------------------------------------------------------------------------------- /src/Common/SDU.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/SDU.msg -------------------------------------------------------------------------------- /src/Common/SDUData.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/SDUData.msg -------------------------------------------------------------------------------- /src/Common/SHA256.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/SHA256.cc -------------------------------------------------------------------------------- /src/Common/SHA256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/SHA256.h -------------------------------------------------------------------------------- /src/Common/Socket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/Socket.cc -------------------------------------------------------------------------------- /src/Common/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/Socket.h -------------------------------------------------------------------------------- /src/Common/Socket.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/Socket.ned -------------------------------------------------------------------------------- /src/Common/Test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/Test.cc -------------------------------------------------------------------------------- /src/Common/Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/Test.h -------------------------------------------------------------------------------- /src/Common/Test.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/Test.ned -------------------------------------------------------------------------------- /src/Common/Utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/Utils.cc -------------------------------------------------------------------------------- /src/Common/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/Common/Utils.h -------------------------------------------------------------------------------- /src/DAF/AE/AE.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AE/AE.cc -------------------------------------------------------------------------------- /src/DAF/AE/AE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AE/AE.h -------------------------------------------------------------------------------- /src/DAF/AE/AE.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AE/AE.ned -------------------------------------------------------------------------------- /src/DAF/AE/AEBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AE/AEBase.cc -------------------------------------------------------------------------------- /src/DAF/AE/AEBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AE/AEBase.h -------------------------------------------------------------------------------- /src/DAF/AE/AEListeners.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AE/AEListeners.cc -------------------------------------------------------------------------------- /src/DAF/AE/AEListeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AE/AEListeners.h -------------------------------------------------------------------------------- /src/DAF/AE/AEMonitor/AEMonitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AE/AEMonitor/AEMonitor.cc -------------------------------------------------------------------------------- /src/DAF/AE/AEMonitor/AEMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AE/AEMonitor/AEMonitor.h -------------------------------------------------------------------------------- /src/DAF/AE/AEMonitor/AEMonitor.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AE/AEMonitor/AEMonitor.ned -------------------------------------------------------------------------------- /src/DAF/AE/ApplicationEntity.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AE/ApplicationEntity.ned -------------------------------------------------------------------------------- /src/DAF/AE/ApplicationEntityInstance.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AE/ApplicationEntityInstance.ned -------------------------------------------------------------------------------- /src/DAF/AE/IAE.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AE/IAE.ned -------------------------------------------------------------------------------- /src/DAF/AEManagement/AEManagement.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AEManagement/AEManagement.ned -------------------------------------------------------------------------------- /src/DAF/AEManagement/AEMgmt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AEManagement/AEMgmt.cc -------------------------------------------------------------------------------- /src/DAF/AEManagement/AEMgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AEManagement/AEMgmt.h -------------------------------------------------------------------------------- /src/DAF/AEManagement/AEMgmt.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AEManagement/AEMgmt.ned -------------------------------------------------------------------------------- /src/DAF/AEManagement/AEMgmtBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AEManagement/AEMgmtBase.cc -------------------------------------------------------------------------------- /src/DAF/AEManagement/AEMgmtBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AEManagement/AEMgmtBase.h -------------------------------------------------------------------------------- /src/DAF/AEManagement/AEMgmtListeners.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AEManagement/AEMgmtListeners.cc -------------------------------------------------------------------------------- /src/DAF/AEManagement/AEMgmtListeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AEManagement/AEMgmtListeners.h -------------------------------------------------------------------------------- /src/DAF/AEManagement/AEmanagementModule.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AEManagement/AEmanagementModule.ned -------------------------------------------------------------------------------- /src/DAF/AP/AP.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AP/AP.cc -------------------------------------------------------------------------------- /src/DAF/AP/AP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AP/AP.h -------------------------------------------------------------------------------- /src/DAF/AP/AP.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AP/AP.ned -------------------------------------------------------------------------------- /src/DAF/AP/APBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AP/APBase.cc -------------------------------------------------------------------------------- /src/DAF/AP/APBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AP/APBase.h -------------------------------------------------------------------------------- /src/DAF/AP/APIObjBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AP/APIObjBase.cc -------------------------------------------------------------------------------- /src/DAF/AP/APIObjBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AP/APIObjBase.h -------------------------------------------------------------------------------- /src/DAF/AP/APIReqObj.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AP/APIReqObj.cc -------------------------------------------------------------------------------- /src/DAF/AP/APIReqObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AP/APIReqObj.h -------------------------------------------------------------------------------- /src/DAF/AP/APIResult.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AP/APIResult.cc -------------------------------------------------------------------------------- /src/DAF/AP/APIResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AP/APIResult.h -------------------------------------------------------------------------------- /src/DAF/AP/APIRetObj.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AP/APIRetObj.cc -------------------------------------------------------------------------------- /src/DAF/AP/APIRetObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AP/APIRetObj.h -------------------------------------------------------------------------------- /src/DAF/AP/APISocketObj.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AP/APISocketObj.cc -------------------------------------------------------------------------------- /src/DAF/AP/APISocketObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AP/APISocketObj.h -------------------------------------------------------------------------------- /src/DAF/AP/APInst.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AP/APInst.ned -------------------------------------------------------------------------------- /src/DAF/AP/APListeners.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AP/APListeners.cc -------------------------------------------------------------------------------- /src/DAF/AP/APListeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AP/APListeners.h -------------------------------------------------------------------------------- /src/DAF/AP/APPing/APPing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AP/APPing/APPing.cc -------------------------------------------------------------------------------- /src/DAF/AP/APPing/APPing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AP/APPing/APPing.h -------------------------------------------------------------------------------- /src/DAF/AP/APPing/APPing.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AP/APPing/APPing.ned -------------------------------------------------------------------------------- /src/DAF/AP/APStream/APStream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AP/APStream/APStream.cc -------------------------------------------------------------------------------- /src/DAF/AP/APStream/APStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AP/APStream/APStream.h -------------------------------------------------------------------------------- /src/DAF/AP/APStream/APStream.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/AP/APStream/APStream.ned -------------------------------------------------------------------------------- /src/DAF/ApplicationProcess.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/ApplicationProcess.ned -------------------------------------------------------------------------------- /src/DAF/CDAP/Auth.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/CDAP/Auth.cc -------------------------------------------------------------------------------- /src/DAF/CDAP/Auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/CDAP/Auth.h -------------------------------------------------------------------------------- /src/DAF/CDAP/Auth.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/CDAP/Auth.ned -------------------------------------------------------------------------------- /src/DAF/CDAP/AuthListeners.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/CDAP/AuthListeners.cc -------------------------------------------------------------------------------- /src/DAF/CDAP/AuthListeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/CDAP/AuthListeners.h -------------------------------------------------------------------------------- /src/DAF/CDAP/CACE.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/CDAP/CACE.cc -------------------------------------------------------------------------------- /src/DAF/CDAP/CACE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/CDAP/CACE.h -------------------------------------------------------------------------------- /src/DAF/CDAP/CACE.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/CDAP/CACE.ned -------------------------------------------------------------------------------- /src/DAF/CDAP/CACEListeners.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/CDAP/CACEListeners.cc -------------------------------------------------------------------------------- /src/DAF/CDAP/CACEListeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/CDAP/CACEListeners.h -------------------------------------------------------------------------------- /src/DAF/CDAP/CDAP.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/CDAP/CDAP.cc -------------------------------------------------------------------------------- /src/DAF/CDAP/CDAP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/CDAP/CDAP.h -------------------------------------------------------------------------------- /src/DAF/CDAP/CDAP.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/CDAP/CDAP.ned -------------------------------------------------------------------------------- /src/DAF/CDAP/CDAPListeners.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/CDAP/CDAPListeners.cc -------------------------------------------------------------------------------- /src/DAF/CDAP/CDAPListeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/CDAP/CDAPListeners.h -------------------------------------------------------------------------------- /src/DAF/CDAP/CDAPMessage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/CDAP/CDAPMessage.msg -------------------------------------------------------------------------------- /src/DAF/CDAP/CDAPMsgLog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/CDAP/CDAPMsgLog.cc -------------------------------------------------------------------------------- /src/DAF/CDAP/CDAPMsgLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/CDAP/CDAPMsgLog.h -------------------------------------------------------------------------------- /src/DAF/CDAP/CDAPMsgLog.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/CDAP/CDAPMsgLog.ned -------------------------------------------------------------------------------- /src/DAF/CDAP/CDAPMsgLogEntry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/CDAP/CDAPMsgLogEntry.cc -------------------------------------------------------------------------------- /src/DAF/CDAP/CDAPMsgLogEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/CDAP/CDAPMsgLogEntry.h -------------------------------------------------------------------------------- /src/DAF/CDAP/CDAPSplitter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/CDAP/CDAPSplitter.cc -------------------------------------------------------------------------------- /src/DAF/CDAP/CDAPSplitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/CDAP/CDAPSplitter.h -------------------------------------------------------------------------------- /src/DAF/CDAP/CDAPSplitter.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/CDAP/CDAPSplitter.ned -------------------------------------------------------------------------------- /src/DAF/DA/DA.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/DA/DA.cc -------------------------------------------------------------------------------- /src/DAF/DA/DA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/DA/DA.h -------------------------------------------------------------------------------- /src/DAF/DA/DA.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/DA/DA.ned -------------------------------------------------------------------------------- /src/DAF/DA/DIFAllocator.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/DA/DIFAllocator.ned -------------------------------------------------------------------------------- /src/DAF/DA/Directory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/DA/Directory.cc -------------------------------------------------------------------------------- /src/DAF/DA/Directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/DA/Directory.h -------------------------------------------------------------------------------- /src/DAF/DA/Directory.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/DA/Directory.ned -------------------------------------------------------------------------------- /src/DAF/DA/DirectoryEntry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/DA/DirectoryEntry.cc -------------------------------------------------------------------------------- /src/DAF/DA/DirectoryEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/DA/DirectoryEntry.h -------------------------------------------------------------------------------- /src/DAF/DA/NamingInformation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/DA/NamingInformation.cc -------------------------------------------------------------------------------- /src/DAF/DA/NamingInformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/DA/NamingInformation.h -------------------------------------------------------------------------------- /src/DAF/DA/NamingInformation.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/DA/NamingInformation.ned -------------------------------------------------------------------------------- /src/DAF/DA/NamingInformationEntry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/DA/NamingInformationEntry.cc -------------------------------------------------------------------------------- /src/DAF/DA/NamingInformationEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/DA/NamingInformationEntry.h -------------------------------------------------------------------------------- /src/DAF/DA/NeighborTable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/DA/NeighborTable.cc -------------------------------------------------------------------------------- /src/DAF/DA/NeighborTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/DA/NeighborTable.h -------------------------------------------------------------------------------- /src/DAF/DA/NeighborTable.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/DA/NeighborTable.ned -------------------------------------------------------------------------------- /src/DAF/DA/NeighborTableEntry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/DA/NeighborTableEntry.cc -------------------------------------------------------------------------------- /src/DAF/DA/NeighborTableEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/DA/NeighborTableEntry.h -------------------------------------------------------------------------------- /src/DAF/DA/SearchTable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/DA/SearchTable.cc -------------------------------------------------------------------------------- /src/DAF/DA/SearchTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/DA/SearchTable.h -------------------------------------------------------------------------------- /src/DAF/DA/SearchTable.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/DA/SearchTable.ned -------------------------------------------------------------------------------- /src/DAF/DA/SearchTableEntry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/DA/SearchTableEntry.cc -------------------------------------------------------------------------------- /src/DAF/DA/SearchTableEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/DA/SearchTableEntry.h -------------------------------------------------------------------------------- /src/DAF/Enrollment/CACEBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/CACEBase.cc -------------------------------------------------------------------------------- /src/DAF/Enrollment/CACEBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/CACEBase.h -------------------------------------------------------------------------------- /src/DAF/Enrollment/CACEGeneric.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/CACEGeneric.cc -------------------------------------------------------------------------------- /src/DAF/Enrollment/CACEGeneric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/CACEGeneric.h -------------------------------------------------------------------------------- /src/DAF/Enrollment/CACEMgmt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/CACEMgmt.cc -------------------------------------------------------------------------------- /src/DAF/Enrollment/CACEMgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/CACEMgmt.h -------------------------------------------------------------------------------- /src/DAF/Enrollment/DAFEnrollment.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/DAFEnrollment.cc -------------------------------------------------------------------------------- /src/DAF/Enrollment/DAFEnrollment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/DAFEnrollment.h -------------------------------------------------------------------------------- /src/DAF/Enrollment/DAFEnrollmentBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/DAFEnrollmentBase.cc -------------------------------------------------------------------------------- /src/DAF/Enrollment/DAFEnrollmentBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/DAFEnrollmentBase.h -------------------------------------------------------------------------------- /src/DAF/Enrollment/DAFEnrollmentListeners.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/DAFEnrollmentListeners.cc -------------------------------------------------------------------------------- /src/DAF/Enrollment/DAFEnrollmentListeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/DAFEnrollmentListeners.h -------------------------------------------------------------------------------- /src/DAF/Enrollment/DAFEnrollmentNotifier.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/DAFEnrollmentNotifier.cc -------------------------------------------------------------------------------- /src/DAF/Enrollment/DAFEnrollmentNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/DAFEnrollmentNotifier.h -------------------------------------------------------------------------------- /src/DAF/Enrollment/DAFEnrollmentNotifierBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/DAFEnrollmentNotifierBase.cc -------------------------------------------------------------------------------- /src/DAF/Enrollment/DAFEnrollmentNotifierBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/DAFEnrollmentNotifierBase.h -------------------------------------------------------------------------------- /src/DAF/Enrollment/DAFEnrollmentObj.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/DAFEnrollmentObj.cc -------------------------------------------------------------------------------- /src/DAF/Enrollment/DAFEnrollmentObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/DAFEnrollmentObj.h -------------------------------------------------------------------------------- /src/DAF/Enrollment/DAFEnrollmentStateTable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/DAFEnrollmentStateTable.cc -------------------------------------------------------------------------------- /src/DAF/Enrollment/DAFEnrollmentStateTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/DAFEnrollmentStateTable.h -------------------------------------------------------------------------------- /src/DAF/Enrollment/DAFOperationObj.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/DAFOperationObj.cc -------------------------------------------------------------------------------- /src/DAF/Enrollment/DAFOperationObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/DAFOperationObj.h -------------------------------------------------------------------------------- /src/DAF/Enrollment/Enrollment.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/Enrollment.ned -------------------------------------------------------------------------------- /src/DAF/Enrollment/EnrollmentModule.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/EnrollmentModule.ned -------------------------------------------------------------------------------- /src/DAF/Enrollment/EnrollmentNotifier.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/EnrollmentNotifier.ned -------------------------------------------------------------------------------- /src/DAF/Enrollment/EnrollmentStateTable.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/Enrollment/EnrollmentStateTable.ned -------------------------------------------------------------------------------- /src/DAF/IRM/ConnectionTable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/IRM/ConnectionTable.cc -------------------------------------------------------------------------------- /src/DAF/IRM/ConnectionTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/IRM/ConnectionTable.h -------------------------------------------------------------------------------- /src/DAF/IRM/ConnectionTable.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/IRM/ConnectionTable.ned -------------------------------------------------------------------------------- /src/DAF/IRM/ConnectionTableEntry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/IRM/ConnectionTableEntry.cc -------------------------------------------------------------------------------- /src/DAF/IRM/ConnectionTableEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/IRM/ConnectionTableEntry.h -------------------------------------------------------------------------------- /src/DAF/IRM/IPCResourceManager.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/IRM/IPCResourceManager.ned -------------------------------------------------------------------------------- /src/DAF/IRM/IRM.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/IRM/IRM.cc -------------------------------------------------------------------------------- /src/DAF/IRM/IRM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/IRM/IRM.h -------------------------------------------------------------------------------- /src/DAF/IRM/IRM.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/IRM/IRM.ned -------------------------------------------------------------------------------- /src/DAF/IRM/IRMListeners.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/IRM/IRMListeners.cc -------------------------------------------------------------------------------- /src/DAF/IRM/IRMListeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/IRM/IRMListeners.h -------------------------------------------------------------------------------- /src/DAF/RIB/DAFRIBd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/RIB/DAFRIBd.cc -------------------------------------------------------------------------------- /src/DAF/RIB/DAFRIBd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/RIB/DAFRIBd.h -------------------------------------------------------------------------------- /src/DAF/RIB/DAFRIBdBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/RIB/DAFRIBdBase.cc -------------------------------------------------------------------------------- /src/DAF/RIB/DAFRIBdBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/RIB/DAFRIBdBase.h -------------------------------------------------------------------------------- /src/DAF/RIB/DAFRIBdListeners.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/RIB/DAFRIBdListeners.cc -------------------------------------------------------------------------------- /src/DAF/RIB/DAFRIBdListeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/RIB/DAFRIBdListeners.h -------------------------------------------------------------------------------- /src/DAF/RIB/RIBDaemon.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/RIB/RIBDaemon.ned -------------------------------------------------------------------------------- /src/DAF/RIB/RIBd.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DAF/RIB/RIBd.ned -------------------------------------------------------------------------------- /src/DIF/Delimiting/Data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Delimiting/Data.cc -------------------------------------------------------------------------------- /src/DIF/Delimiting/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Delimiting/Data.h -------------------------------------------------------------------------------- /src/DIF/Delimiting/Data.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Delimiting/Data.msg -------------------------------------------------------------------------------- /src/DIF/Delimiting/Delimiting.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Delimiting/Delimiting.cc -------------------------------------------------------------------------------- /src/DIF/Delimiting/Delimiting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Delimiting/Delimiting.h -------------------------------------------------------------------------------- /src/DIF/Delimiting/Delimiting.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Delimiting/Delimiting.ned -------------------------------------------------------------------------------- /src/DIF/Delimiting/DelimitingTimers.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Delimiting/DelimitingTimers.msg -------------------------------------------------------------------------------- /src/DIF/Delimiting/PDUData.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Delimiting/PDUData.cc -------------------------------------------------------------------------------- /src/DIF/Delimiting/PDUData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Delimiting/PDUData.h -------------------------------------------------------------------------------- /src/DIF/Delimiting/PDUData.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Delimiting/PDUData.msg -------------------------------------------------------------------------------- /src/DIF/Delimiting/UserDataField.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Delimiting/UserDataField.cc -------------------------------------------------------------------------------- /src/DIF/Delimiting/UserDataField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Delimiting/UserDataField.h -------------------------------------------------------------------------------- /src/DIF/Delimiting/UserDataField.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Delimiting/UserDataField.msg -------------------------------------------------------------------------------- /src/DIF/EFCP/DTCP/ControlPDU.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/DTCP/ControlPDU.msg -------------------------------------------------------------------------------- /src/DIF/EFCP/DTCP/DTCP.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/DTCP/DTCP.cc -------------------------------------------------------------------------------- /src/DIF/EFCP/DTCP/DTCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/DTCP/DTCP.h -------------------------------------------------------------------------------- /src/DIF/EFCP/DTCP/DTCP.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/DTCP/DTCP.ned -------------------------------------------------------------------------------- /src/DIF/EFCP/DTCP/DTCPState.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/DTCP/DTCPState.cc -------------------------------------------------------------------------------- /src/DIF/EFCP/DTCP/DTCPState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/DTCP/DTCPState.h -------------------------------------------------------------------------------- /src/DIF/EFCP/DTCP/DTCPState.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/DTCP/DTCPState.ned -------------------------------------------------------------------------------- /src/DIF/EFCP/DTCP/DTCPTimers.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/DTCP/DTCPTimers.msg -------------------------------------------------------------------------------- /src/DIF/EFCP/DTCP/RXControl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/DTCP/RXControl.cc -------------------------------------------------------------------------------- /src/DIF/EFCP/DTCP/RXControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/DTCP/RXControl.h -------------------------------------------------------------------------------- /src/DIF/EFCP/DTP/DTP.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/DTP/DTP.cc -------------------------------------------------------------------------------- /src/DIF/EFCP/DTP/DTP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/DTP/DTP.h -------------------------------------------------------------------------------- /src/DIF/EFCP/DTP/DTP.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/DTP/DTP.ned -------------------------------------------------------------------------------- /src/DIF/EFCP/DTP/DTPState.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/DTP/DTPState.cc -------------------------------------------------------------------------------- /src/DIF/EFCP/DTP/DTPState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/DTP/DTPState.h -------------------------------------------------------------------------------- /src/DIF/EFCP/DTP/DTPState.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/DTP/DTPState.ned -------------------------------------------------------------------------------- /src/DIF/EFCP/DTP/DTPTimers.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/DTP/DTPTimers.msg -------------------------------------------------------------------------------- /src/DIF/EFCP/DTP/DataTransferPDU.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/DTP/DataTransferPDU.cc -------------------------------------------------------------------------------- /src/DIF/EFCP/DTP/DataTransferPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/DTP/DataTransferPDU.h -------------------------------------------------------------------------------- /src/DIF/EFCP/DTP/DataTransferPDU.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/DTP/DataTransferPDU.msg -------------------------------------------------------------------------------- /src/DIF/EFCP/DTP/DumbGate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/DTP/DumbGate.cc -------------------------------------------------------------------------------- /src/DIF/EFCP/DTP/DumbGate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/DTP/DumbGate.h -------------------------------------------------------------------------------- /src/DIF/EFCP/DTP/DumbGate.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/DTP/DumbGate.ned -------------------------------------------------------------------------------- /src/DIF/EFCP/EFCP.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/EFCP.cc -------------------------------------------------------------------------------- /src/DIF/EFCP/EFCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/EFCP.h -------------------------------------------------------------------------------- /src/DIF/EFCP/EFCP.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/EFCP.ned -------------------------------------------------------------------------------- /src/DIF/EFCP/EFCPI.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/EFCPI.ned -------------------------------------------------------------------------------- /src/DIF/EFCP/EFCPInstance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/EFCPInstance.cc -------------------------------------------------------------------------------- /src/DIF/EFCP/EFCPInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/EFCPInstance.h -------------------------------------------------------------------------------- /src/DIF/EFCP/EFCPListeners.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/EFCPListeners.cc -------------------------------------------------------------------------------- /src/DIF/EFCP/EFCPListeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/EFCPListeners.h -------------------------------------------------------------------------------- /src/DIF/EFCP/EFCPModule.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/EFCPModule.ned -------------------------------------------------------------------------------- /src/DIF/EFCP/EFCPPolicySet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/EFCPPolicySet.cc -------------------------------------------------------------------------------- /src/DIF/EFCP/EFCPPolicySet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/EFCPPolicySet.h -------------------------------------------------------------------------------- /src/DIF/EFCP/EFCPTable/EFCPTable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/EFCPTable/EFCPTable.cc -------------------------------------------------------------------------------- /src/DIF/EFCP/EFCPTable/EFCPTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/EFCPTable/EFCPTable.h -------------------------------------------------------------------------------- /src/DIF/EFCP/EFCPTable/EFCPTable.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/EFCPTable/EFCPTable.ned -------------------------------------------------------------------------------- /src/DIF/EFCP/EFCPTable/EFCPTableEntry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/EFCPTable/EFCPTableEntry.cc -------------------------------------------------------------------------------- /src/DIF/EFCP/EFCPTable/EFCPTableEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/EFCPTable/EFCPTableEntry.h -------------------------------------------------------------------------------- /src/DIF/EFCP/EFCP_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/EFCP_defs.h -------------------------------------------------------------------------------- /src/DIF/EFCP/ManagementPDU.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/ManagementPDU.msg -------------------------------------------------------------------------------- /src/DIF/EFCP/MockEFCP.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/MockEFCP.ned -------------------------------------------------------------------------------- /src/DIF/EFCP/MockEFCPI.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/MockEFCPI.cc -------------------------------------------------------------------------------- /src/DIF/EFCP/MockEFCPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/EFCP/MockEFCPI.h -------------------------------------------------------------------------------- /src/DIF/Enrollment/Enrollment.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Enrollment/Enrollment.cc -------------------------------------------------------------------------------- /src/DIF/Enrollment/Enrollment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Enrollment/Enrollment.h -------------------------------------------------------------------------------- /src/DIF/Enrollment/Enrollment.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Enrollment/Enrollment.ned -------------------------------------------------------------------------------- /src/DIF/Enrollment/EnrollmentBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Enrollment/EnrollmentBase.cc -------------------------------------------------------------------------------- /src/DIF/Enrollment/EnrollmentBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Enrollment/EnrollmentBase.h -------------------------------------------------------------------------------- /src/DIF/Enrollment/EnrollmentListeners.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Enrollment/EnrollmentListeners.cc -------------------------------------------------------------------------------- /src/DIF/Enrollment/EnrollmentListeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Enrollment/EnrollmentListeners.h -------------------------------------------------------------------------------- /src/DIF/Enrollment/EnrollmentModule.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Enrollment/EnrollmentModule.ned -------------------------------------------------------------------------------- /src/DIF/Enrollment/EnrollmentNotifier.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Enrollment/EnrollmentNotifier.cc -------------------------------------------------------------------------------- /src/DIF/Enrollment/EnrollmentNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Enrollment/EnrollmentNotifier.h -------------------------------------------------------------------------------- /src/DIF/Enrollment/EnrollmentNotifier.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Enrollment/EnrollmentNotifier.ned -------------------------------------------------------------------------------- /src/DIF/Enrollment/EnrollmentNotifierBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Enrollment/EnrollmentNotifierBase.cc -------------------------------------------------------------------------------- /src/DIF/Enrollment/EnrollmentNotifierBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Enrollment/EnrollmentNotifierBase.h -------------------------------------------------------------------------------- /src/DIF/Enrollment/EnrollmentNotifierListeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Enrollment/EnrollmentNotifierListeners.h -------------------------------------------------------------------------------- /src/DIF/Enrollment/EnrollmentObj.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Enrollment/EnrollmentObj.cc -------------------------------------------------------------------------------- /src/DIF/Enrollment/EnrollmentObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Enrollment/EnrollmentObj.h -------------------------------------------------------------------------------- /src/DIF/Enrollment/EnrollmentStateTable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Enrollment/EnrollmentStateTable.cc -------------------------------------------------------------------------------- /src/DIF/Enrollment/EnrollmentStateTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Enrollment/EnrollmentStateTable.h -------------------------------------------------------------------------------- /src/DIF/Enrollment/EnrollmentStateTable.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Enrollment/EnrollmentStateTable.ned -------------------------------------------------------------------------------- /src/DIF/Enrollment/EnrollmentStateTableEntry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Enrollment/EnrollmentStateTableEntry.cc -------------------------------------------------------------------------------- /src/DIF/Enrollment/EnrollmentStateTableEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Enrollment/EnrollmentStateTableEntry.h -------------------------------------------------------------------------------- /src/DIF/Enrollment/OperationObj.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Enrollment/OperationObj.cc -------------------------------------------------------------------------------- /src/DIF/Enrollment/OperationObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Enrollment/OperationObj.h -------------------------------------------------------------------------------- /src/DIF/FA/FA.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/FA.cc -------------------------------------------------------------------------------- /src/DIF/FA/FA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/FA.h -------------------------------------------------------------------------------- /src/DIF/FA/FA.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/FA.ned -------------------------------------------------------------------------------- /src/DIF/FA/FABase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/FABase.cc -------------------------------------------------------------------------------- /src/DIF/FA/FABase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/FABase.h -------------------------------------------------------------------------------- /src/DIF/FA/FAI.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/FAI.cc -------------------------------------------------------------------------------- /src/DIF/FA/FAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/FAI.h -------------------------------------------------------------------------------- /src/DIF/FA/FAI.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/FAI.ned -------------------------------------------------------------------------------- /src/DIF/FA/FAIBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/FAIBase.cc -------------------------------------------------------------------------------- /src/DIF/FA/FAIBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/FAIBase.h -------------------------------------------------------------------------------- /src/DIF/FA/FAIListeners.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/FAIListeners.cc -------------------------------------------------------------------------------- /src/DIF/FA/FAIListeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/FAIListeners.h -------------------------------------------------------------------------------- /src/DIF/FA/FAListeners.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/FAListeners.cc -------------------------------------------------------------------------------- /src/DIF/FA/FAListeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/FAListeners.h -------------------------------------------------------------------------------- /src/DIF/FA/FANotifier.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/FANotifier.cc -------------------------------------------------------------------------------- /src/DIF/FA/FANotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/FANotifier.h -------------------------------------------------------------------------------- /src/DIF/FA/FANotifier.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/FANotifier.ned -------------------------------------------------------------------------------- /src/DIF/FA/FANotifierBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/FANotifierBase.cc -------------------------------------------------------------------------------- /src/DIF/FA/FANotifierBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/FANotifierBase.h -------------------------------------------------------------------------------- /src/DIF/FA/FANotifierListeners.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/FANotifierListeners.cc -------------------------------------------------------------------------------- /src/DIF/FA/FANotifierListeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/FANotifierListeners.h -------------------------------------------------------------------------------- /src/DIF/FA/FlowAllocator.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/FlowAllocator.ned -------------------------------------------------------------------------------- /src/DIF/FA/NFlowTable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/NFlowTable.cc -------------------------------------------------------------------------------- /src/DIF/FA/NFlowTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/NFlowTable.h -------------------------------------------------------------------------------- /src/DIF/FA/NFlowTable.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/NFlowTable.ned -------------------------------------------------------------------------------- /src/DIF/FA/NFlowTableEntry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/NFlowTableEntry.cc -------------------------------------------------------------------------------- /src/DIF/FA/NFlowTableEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/FA/NFlowTableEntry.h -------------------------------------------------------------------------------- /src/DIF/IPCProcess.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/IPCProcess.ned -------------------------------------------------------------------------------- /src/DIF/NSM/DirectoryForwardingTable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/NSM/DirectoryForwardingTable.cc -------------------------------------------------------------------------------- /src/DIF/NSM/DirectoryForwardingTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/NSM/DirectoryForwardingTable.h -------------------------------------------------------------------------------- /src/DIF/NSM/DirectoryForwardingTable.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/NSM/DirectoryForwardingTable.ned -------------------------------------------------------------------------------- /src/DIF/NSM/LocalDirectoryCache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/NSM/LocalDirectoryCache.cc -------------------------------------------------------------------------------- /src/DIF/NSM/LocalDirectoryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/NSM/LocalDirectoryCache.h -------------------------------------------------------------------------------- /src/DIF/NSM/LocalDirectoryCache.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/NSM/LocalDirectoryCache.ned -------------------------------------------------------------------------------- /src/DIF/NSM/NSM.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/NSM/NSM.cc -------------------------------------------------------------------------------- /src/DIF/NSM/NSM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/NSM/NSM.h -------------------------------------------------------------------------------- /src/DIF/NSM/NSM.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/NSM/NSM.ned -------------------------------------------------------------------------------- /src/DIF/NSM/NameSpaceManager.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/NSM/NameSpaceManager.ned -------------------------------------------------------------------------------- /src/DIF/RA/NM1FlowTable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RA/NM1FlowTable.cc -------------------------------------------------------------------------------- /src/DIF/RA/NM1FlowTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RA/NM1FlowTable.h -------------------------------------------------------------------------------- /src/DIF/RA/NM1FlowTable.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RA/NM1FlowTable.ned -------------------------------------------------------------------------------- /src/DIF/RA/NM1FlowTableItem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RA/NM1FlowTableItem.cc -------------------------------------------------------------------------------- /src/DIF/RA/NM1FlowTableItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RA/NM1FlowTableItem.h -------------------------------------------------------------------------------- /src/DIF/RA/PDUFG/IntBbPDUFG.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RA/PDUFG/IntBbPDUFG.cc -------------------------------------------------------------------------------- /src/DIF/RA/PDUFG/IntBbPDUFG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RA/PDUFG/IntBbPDUFG.h -------------------------------------------------------------------------------- /src/DIF/RA/PDUFG/IntPDUFG.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RA/PDUFG/IntPDUFG.cc -------------------------------------------------------------------------------- /src/DIF/RA/PDUFG/IntPDUFG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RA/PDUFG/IntPDUFG.h -------------------------------------------------------------------------------- /src/DIF/RA/PDUFG/IntPDUFG.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RA/PDUFG/IntPDUFG.ned -------------------------------------------------------------------------------- /src/DIF/RA/PDUFG/PDUFGNeighbor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RA/PDUFG/PDUFGNeighbor.cc -------------------------------------------------------------------------------- /src/DIF/RA/PDUFG/PDUFGNeighbor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RA/PDUFG/PDUFGNeighbor.h -------------------------------------------------------------------------------- /src/DIF/RA/RA.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RA/RA.cc -------------------------------------------------------------------------------- /src/DIF/RA/RA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RA/RA.h -------------------------------------------------------------------------------- /src/DIF/RA/RA.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RA/RA.ned -------------------------------------------------------------------------------- /src/DIF/RA/RABase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RA/RABase.cc -------------------------------------------------------------------------------- /src/DIF/RA/RABase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RA/RABase.h -------------------------------------------------------------------------------- /src/DIF/RA/RAListeners.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RA/RAListeners.cc -------------------------------------------------------------------------------- /src/DIF/RA/RAListeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RA/RAListeners.h -------------------------------------------------------------------------------- /src/DIF/RA/ResourceAllocator.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RA/ResourceAllocator.ned -------------------------------------------------------------------------------- /src/DIF/RIB/RIBDaemon.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RIB/RIBDaemon.ned -------------------------------------------------------------------------------- /src/DIF/RIB/RIBd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RIB/RIBd.cc -------------------------------------------------------------------------------- /src/DIF/RIB/RIBd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RIB/RIBd.h -------------------------------------------------------------------------------- /src/DIF/RIB/RIBd.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RIB/RIBd.ned -------------------------------------------------------------------------------- /src/DIF/RIB/RIBdBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RIB/RIBdBase.cc -------------------------------------------------------------------------------- /src/DIF/RIB/RIBdBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RIB/RIBdBase.h -------------------------------------------------------------------------------- /src/DIF/RIB/RIBdListeners.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RIB/RIBdListeners.cc -------------------------------------------------------------------------------- /src/DIF/RIB/RIBdListeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RIB/RIBdListeners.h -------------------------------------------------------------------------------- /src/DIF/RIB/RIBdSplitter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RIB/RIBdSplitter.cc -------------------------------------------------------------------------------- /src/DIF/RIB/RIBdSplitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RIB/RIBdSplitter.h -------------------------------------------------------------------------------- /src/DIF/RIB/RIBdSplitter.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RIB/RIBdSplitter.ned -------------------------------------------------------------------------------- /src/DIF/RMT/RMT.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RMT/RMT.cc -------------------------------------------------------------------------------- /src/DIF/RMT/RMT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RMT/RMT.h -------------------------------------------------------------------------------- /src/DIF/RMT/RMT.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RMT/RMT.ned -------------------------------------------------------------------------------- /src/DIF/RMT/RMTBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RMT/RMTBase.cc -------------------------------------------------------------------------------- /src/DIF/RMT/RMTBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RMT/RMTBase.h -------------------------------------------------------------------------------- /src/DIF/RMT/RMTListeners.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RMT/RMTListeners.cc -------------------------------------------------------------------------------- /src/DIF/RMT/RMTListeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RMT/RMTListeners.h -------------------------------------------------------------------------------- /src/DIF/RMT/RMTModuleAllocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RMT/RMTModuleAllocator.cc -------------------------------------------------------------------------------- /src/DIF/RMT/RMTModuleAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RMT/RMTModuleAllocator.h -------------------------------------------------------------------------------- /src/DIF/RMT/RMTModuleAllocator.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RMT/RMTModuleAllocator.ned -------------------------------------------------------------------------------- /src/DIF/RMT/RMTPort.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RMT/RMTPort.cc -------------------------------------------------------------------------------- /src/DIF/RMT/RMTPort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RMT/RMTPort.h -------------------------------------------------------------------------------- /src/DIF/RMT/RMTPort.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RMT/RMTPort.ned -------------------------------------------------------------------------------- /src/DIF/RMT/RMTPortWrapper.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RMT/RMTPortWrapper.ned -------------------------------------------------------------------------------- /src/DIF/RMT/RMTQueue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RMT/RMTQueue.cc -------------------------------------------------------------------------------- /src/DIF/RMT/RMTQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RMT/RMTQueue.h -------------------------------------------------------------------------------- /src/DIF/RMT/RMTQueue.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RMT/RMTQueue.ned -------------------------------------------------------------------------------- /src/DIF/RMT/RelayAndMux.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/RMT/RelayAndMux.ned -------------------------------------------------------------------------------- /src/DIF/Routing/IntBbRouting.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Routing/IntBbRouting.cc -------------------------------------------------------------------------------- /src/DIF/Routing/IntBbRouting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Routing/IntBbRouting.h -------------------------------------------------------------------------------- /src/DIF/Routing/IntRouting.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Routing/IntRouting.cc -------------------------------------------------------------------------------- /src/DIF/Routing/IntRouting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Routing/IntRouting.h -------------------------------------------------------------------------------- /src/DIF/Routing/IntRouting.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Routing/IntRouting.ned -------------------------------------------------------------------------------- /src/DIF/Routing/IntRoutingUpdate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Routing/IntRoutingUpdate.cc -------------------------------------------------------------------------------- /src/DIF/Routing/IntRoutingUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Routing/IntRoutingUpdate.h -------------------------------------------------------------------------------- /src/DIF/Routing/RoutingNotifier.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Routing/RoutingNotifier.cc -------------------------------------------------------------------------------- /src/DIF/Routing/RoutingNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Routing/RoutingNotifier.h -------------------------------------------------------------------------------- /src/DIF/Routing/RoutingNotifier.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Routing/RoutingNotifier.ned -------------------------------------------------------------------------------- /src/DIF/Routing/RoutingNotifierBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Routing/RoutingNotifierBase.cc -------------------------------------------------------------------------------- /src/DIF/Routing/RoutingNotifierBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Routing/RoutingNotifierBase.h -------------------------------------------------------------------------------- /src/DIF/Routing/RoutingNotifierListeners.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Routing/RoutingNotifierListeners.cc -------------------------------------------------------------------------------- /src/DIF/Routing/RoutingNotifierListeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/DIF/Routing/RoutingNotifierListeners.h -------------------------------------------------------------------------------- /src/makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvetak/RINA/HEAD/src/makefrag --------------------------------------------------------------------------------