├── .gitignore ├── .nedfolders ├── .oppbuildspec ├── INET.patch ├── Makefile ├── README ├── doxy.cfg ├── images ├── i3.gif └── i3c.gif ├── simulations ├── default.ini ├── dht.trace ├── dummy.xml ├── maidsafe.ini ├── nodes_2d.xml ├── nodes_2d_15000.xml ├── nodes_3d.xml ├── omnetpp.ini ├── partition.trace ├── realworld │ ├── realdhtapp.ini │ ├── realdhtworld.ini │ ├── register.py │ ├── setup-realdht │ ├── setup-singlehosts │ ├── singlehost1.ini │ └── singlehost2.ini ├── thesis.ini ├── tools │ ├── plot.py │ ├── scatterplot.py │ └── vecplot.py ├── traffic_profiles.parameters ├── validation.ini └── verify.ini └── src ├── applications ├── almtest │ ├── ALMTest.cc │ ├── ALMTest.h │ ├── ALMTest.ned │ ├── ALMTestTracedMessage.msg │ ├── MessageObserver.cc │ ├── MessageObserver.h │ └── MessageObserver.ned ├── dht │ ├── !WORK_IN_PROGRESS! │ ├── DHT.cc │ ├── DHT.h │ ├── DHT.ned │ ├── DHTDataStorage.cc │ ├── DHTDataStorage.h │ ├── DHTMessage.msg │ ├── RepeatedHashingDHT.cc │ ├── RepeatedHashingDHT.h │ ├── RepeatedHashingDHT.ned │ ├── SymmetricDHT.cc │ ├── SymmetricDHT.h │ └── SymmetricDHT.ned ├── giasearchapp │ ├── !WORK_IN_PROGRESS! │ ├── GIASearchApp.cc │ ├── GIASearchApp.h │ ├── GIASearchApp.ned │ ├── SearchMsgBookkeeping.cc │ └── SearchMsgBookkeeping.h ├── i3 │ ├── I3.cc │ ├── I3.h │ ├── I3.ned │ ├── I3BaseApp.cc │ ├── I3BaseApp.h │ ├── I3IPAddress.cc │ ├── I3IPAddress.h │ ├── I3Identifier.cc │ ├── I3Identifier.h │ ├── I3IdentifierStack.cc │ ├── I3IdentifierStack.h │ ├── I3Message.cc │ ├── I3Message.h │ ├── I3Message.msg │ ├── I3SubIdentifier.cc │ ├── I3SubIdentifier.h │ ├── I3Trigger.cc │ ├── I3Trigger.h │ ├── OverlayDummy.cc │ ├── OverlayDummy.ned │ ├── OverlayI3.ned │ ├── TriggerTable.cc │ ├── TriggerTable.h │ ├── TriggerTable.ned │ └── i3Apps │ │ ├── I3Anycast.cc │ │ ├── I3Anycast.ned │ │ ├── I3Composite.cc │ │ ├── I3Composite.ned │ │ ├── I3HostMobility.cc │ │ ├── I3HostMobility.ned │ │ ├── I3LatencyStretch.cc │ │ ├── I3LatencyStretch.ned │ │ ├── I3Multicast.cc │ │ ├── I3Multicast.ned │ │ ├── I3Session.cc │ │ ├── I3Session.ned │ │ ├── I3SessionMessage.msg │ │ ├── I3TriggerRoutingTime.cc │ │ ├── I3TriggerRoutingTime.ned │ │ ├── I3Triggers.cc │ │ ├── I3Triggers.ned │ │ └── I3TriggersMessage.msg ├── kbrtestapp │ ├── KBRTestApp.cc │ ├── KBRTestApp.h │ ├── KBRTestApp.ned │ └── KBRTestMessage.msg ├── myapplication │ ├── MyApplication.cc │ ├── MyApplication.h │ ├── MyApplication.ned │ └── MyMessage.msg ├── realworldtestapp │ ├── RealWorldTestApp.cc │ ├── RealWorldTestApp.h │ ├── RealWorldTestApp.ned │ ├── RealWorldTestMessage.msg │ ├── RealWorldTestPacketParser.cc │ ├── RealWorldTestPacketParser.h │ └── RealWorldTestPacketParser.ned ├── scribe │ ├── Scribe.cc │ ├── Scribe.h │ ├── Scribe.ned │ ├── ScribeGroup.cc │ ├── ScribeGroup.h │ └── ScribeMessage.msg ├── simplegameclient │ ├── !WORK_IN_PROGRESS! │ ├── BoundingBox2D.cc │ ├── BoundingBox2D.h │ ├── ConnectivityProbeApp.cc │ ├── ConnectivityProbeApp.h │ ├── GlobalCoordinator.cc │ ├── GlobalCoordinator.h │ ├── GlobalCoordinator.ned │ ├── MovementGenerator.cc │ ├── MovementGenerator.h │ ├── SCPacket.h │ ├── SimpleGameClient.cc │ ├── SimpleGameClient.h │ ├── SimpleGameClient.msg │ ├── SimpleGameClient.ned │ ├── greatGathering.cc │ ├── greatGathering.h │ ├── groupRoaming.cc │ ├── groupRoaming.h │ ├── hotspotRoaming.cc │ ├── hotspotRoaming.h │ ├── randomRoaming.cc │ ├── randomRoaming.h │ ├── realWorldRoaming.cc │ ├── realWorldRoaming.h │ ├── traverseRoaming.cc │ └── traverseRoaming.h ├── tcpexampleapp │ ├── TCPExampleApp.cc │ ├── TCPExampleApp.h │ ├── TCPExampleApp.ned │ └── TCPExampleMessage.msg └── tierdummy │ ├── TierDummy.cc │ └── TierDummy.h ├── common ├── AbstractLookup.h ├── BaseApp.cc ├── BaseApp.h ├── BaseApp.ned ├── BaseOverlay.cc ├── BaseOverlay.h ├── BaseOverlay.ned ├── BaseRpc.cc ├── BaseRpc.h ├── BaseRpc.ned ├── BaseTcpSupport.cc ├── BaseTcpSupport.h ├── BinaryValue.cc ├── BinaryValue.h ├── BootstrapList.cc ├── BootstrapList.h ├── BootstrapList.ned ├── BootstrapNodeHandle.h ├── BroadcastInfo.h ├── Churn.msg ├── ChurnGenerator.cc ├── ChurnGenerator.h ├── ChurnGenerator.ned ├── ChurnGeneratorAccess.h ├── CommonMessages.msg ├── Comparator.h ├── CoordinateSystem.cc ├── CoordinateSystem.h ├── CryptoModule.cc ├── CryptoModule.h ├── CryptoModule.ned ├── ExtAPIMessages.msg ├── ExtTCPSocketMap.cc ├── ExtTCPSocketMap.h ├── FinisherModule.cc ├── FinisherModule.h ├── FinisherModule.ned ├── GenericPacketParser.cc ├── GenericPacketParser.h ├── GenericPacketParser.ned ├── GlobalFunctions.ned ├── GlobalNodeList.cc ├── GlobalNodeList.h ├── GlobalNodeList.ned ├── GlobalNodeListAccess.h ├── GlobalObserver.ned ├── GlobalParameters.cc ├── GlobalParameters.h ├── GlobalParameters.ned ├── GlobalParametersAccess.h ├── GlobalStatistics.cc ├── GlobalStatistics.h ├── GlobalStatistics.ned ├── GlobalStatisticsAccess.h ├── GlobalTraceManager.cc ├── GlobalTraceManager.h ├── GlobalTraceManager.msg ├── GlobalTraceManager.ned ├── HashFunc.h ├── IOverlay.ned ├── ITier.ned ├── InitStages.h ├── IterativeLookup.cc ├── IterativeLookup.h ├── IterativeLookupConfiguration.h ├── LifetimeChurn.cc ├── LifetimeChurn.h ├── LifetimeChurn.ned ├── LookupListener.h ├── NeighborCache.cc ├── NeighborCache.h ├── NeighborCache.ned ├── NoChurn.cc ├── NoChurn.h ├── NoChurn.ned ├── NodeHandle.cc ├── NodeHandle.h ├── NodeVector.cc ├── NodeVector.h ├── Nps.cc ├── Nps.h ├── Nps.msg ├── OverSimMessage.cc ├── OverSimMessage.h ├── OverSimMessage.msg ├── OverlayAccess.h ├── OverlayKey.cc ├── OverlayKey.h ├── PacketParser.h ├── PacketParser.ned ├── ParetoChurn.cc ├── ParetoChurn.h ├── ParetoChurn.ned ├── PeerInfo.cc ├── PeerInfo.h ├── PeerStorage.cc ├── PeerStorage.h ├── ProxNodeHandle.cc ├── ProxNodeHandle.h ├── RandomChurn.cc ├── RandomChurn.h ├── RandomChurn.ned ├── RecursiveLookup.cc ├── RecursiveLookup.h ├── RpcListener.cc ├── RpcListener.h ├── RpcMacros.h ├── RpcState.h ├── SHA1.cc ├── SHA1.h ├── SVivaldi.cc ├── SVivaldi.h ├── SimpleNcs.cc ├── SimpleNcs.h ├── StringConvert.h ├── TierDummy.ned ├── TopologyVis.cc ├── TopologyVis.h ├── TraceChurn.cc ├── TraceChurn.h ├── TraceChurn.ned ├── TransportAddress.cc ├── TransportAddress.h ├── UnderlayConfigurator.cc ├── UnderlayConfigurator.h ├── UnderlayConfigurator.ned ├── UnderlayConfiguratorAccess.h ├── Vector2D.cc ├── Vector2D.h ├── Vivaldi.cc ├── Vivaldi.h ├── cbr │ ├── !WORK_IN_PROGRESS! │ ├── CBR-DHT.cc │ ├── CBR-DHT.h │ ├── CBR-DHT.ned │ ├── CBR-DHTMessage.msg │ ├── CoordBasedRouting.cc │ ├── CoordBasedRouting.h │ ├── CoordBasedRouting.ned │ ├── CoordBasedRoutingAccess.h │ ├── CoordMessages.msg │ ├── Landmark.cc │ ├── Landmark.h │ ├── Landmark.ned │ ├── areas.dtd │ ├── areas_nodes_2d_15000.xml │ ├── c2a.rb │ ├── simplex.cc │ ├── simplex.h │ ├── yang.cc │ └── yang.h ├── channels.ned ├── cnetcommbuffer.cc ├── cnetcommbuffer.h ├── hashWatch.h ├── index.h ├── oversim_byteswap.h └── oversim_mapset.h ├── makefrag ├── overlay ├── bamboo │ ├── Bamboo.cc │ ├── Bamboo.h │ └── Bamboo.ned ├── broose │ ├── !WORK_IN_PROGRESS! │ ├── Broose.cc │ ├── Broose.h │ ├── Broose.ned │ ├── BrooseBucket.cc │ ├── BrooseBucket.h │ ├── BrooseHandle.cc │ ├── BrooseHandle.h │ └── BrooseMessage.msg ├── chord │ ├── Chord.cc │ ├── Chord.h │ ├── Chord.ned │ ├── ChordFingerTable.cc │ ├── ChordFingerTable.h │ ├── ChordMessage.msg │ ├── ChordSuccessorList.cc │ └── ChordSuccessorList.h ├── epichord │ ├── EpiChord.cc │ ├── EpiChord.h │ ├── EpiChord.ned │ ├── EpiChordFingerCache.cc │ ├── EpiChordFingerCache.h │ ├── EpiChordIterativeLookup.cc │ ├── EpiChordIterativeLookup.h │ ├── EpiChordMessage.msg │ ├── EpiChordNodeList.cc │ └── EpiChordNodeList.h ├── gia │ ├── !WORK_IN_PROGRESS! │ ├── Gia.cc │ ├── Gia.h │ ├── Gia.ned │ ├── GiaKeyList.cc │ ├── GiaKeyList.h │ ├── GiaKeyListModule.cc │ ├── GiaKeyListModule.h │ ├── GiaMessage.msg │ ├── GiaMessageBookkeeping.cc │ ├── GiaMessageBookkeeping.h │ ├── GiaNeighborCandidateList.cc │ ├── GiaNeighborCandidateList.h │ ├── GiaNeighbors.cc │ ├── GiaNeighbors.h │ ├── GiaNode.cc │ ├── GiaNode.h │ ├── GiaTokenFactory.cc │ └── GiaTokenFactory.h ├── kademlia │ ├── Kademlia.cc │ ├── Kademlia.h │ ├── Kademlia.ned │ ├── KademliaBucket.cc │ ├── KademliaBucket.h │ ├── KademliaMessage.msg │ ├── KademliaNodeHandle.cc │ └── KademliaNodeHandle.h ├── koorde │ ├── Koorde.cc │ ├── Koorde.h │ └── Koorde.ned ├── myoverlay │ ├── MyOverlay.cc │ ├── MyOverlay.h │ ├── MyOverlay.msg │ └── MyOverlay.ned ├── nice │ ├── !WORK_IN_PROGRESS! │ ├── Nice.cc │ ├── Nice.h │ ├── Nice.ned │ ├── NiceCluster.cc │ ├── NiceCluster.h │ ├── NiceMessage.msg │ ├── NicePeerInfo.cc │ ├── NicePeerInfo.h │ └── combination.h ├── ntree │ ├── NTree.cc │ ├── NTree.h │ ├── NTree.msg │ ├── NTree.ned │ ├── NTreeHelper.cc │ └── NTreeHelper.h ├── pastry │ ├── BasePastry.cc │ ├── BasePastry.h │ ├── Pastry.cc │ ├── Pastry.h │ ├── Pastry.ned │ ├── PastryLeafSet.cc │ ├── PastryLeafSet.h │ ├── PastryMessage.msg │ ├── PastryNeighborhoodSet.cc │ ├── PastryNeighborhoodSet.h │ ├── PastryRoutingTable.cc │ ├── PastryRoutingTable.h │ ├── PastryStateObject.cc │ ├── PastryStateObject.h │ └── PastryTypes.h ├── pubsubmmog │ ├── PubSubLobby.cc │ ├── PubSubLobby.h │ ├── PubSubLobby.ned │ ├── PubSubMMOG.cc │ ├── PubSubMMOG.h │ ├── PubSubMMOG.ned │ ├── PubSubMessage.msg │ ├── PubSubSubspace.cc │ ├── PubSubSubspace.h │ ├── PubSubSubspaceId.cc │ └── PubSubSubspaceId.h ├── quon │ ├── !WORK_IN_PROGRESS! │ ├── ConnectivityProbeQuon.cc │ ├── ConnectivityProbeQuon.h │ ├── ConnectivityProbeQuon.ned │ ├── Quon.cc │ ├── Quon.h │ ├── Quon.msg │ ├── Quon.ned │ ├── QuonDefs.h │ ├── QuonHelper.cc │ └── QuonHelper.h └── vast │ ├── !WORK_IN_PROGRESS! │ ├── ConnectivityProbe.cc │ ├── ConnectivityProbe.h │ ├── ConnectivityProbe.ned │ ├── Vast.cc │ ├── Vast.h │ ├── Vast.msg │ ├── Vast.ned │ ├── VastDefs.cc │ └── VastDefs.h ├── package.ned ├── tier2 ├── broadcasttestapp │ ├── BroadcastTestApp.cc │ ├── BroadcastTestApp.h │ ├── BroadcastTestApp.ned │ ├── GlobalBroadcast.cc │ ├── GlobalBroadcast.h │ ├── GlobalBroadcast.ned │ └── GlobalBroadcastAccess.h ├── dhttestapp │ ├── DHTTestApp.cc │ ├── DHTTestApp.h │ ├── DHTTestApp.ned │ ├── DHTTestAppMessages.msg │ ├── GlobalDhtTestMap.cc │ ├── GlobalDhtTestMap.h │ └── GlobalDhtTestMap.ned ├── p2pns │ ├── !WORK_IN_PROGRESS! │ ├── P2pns.cc │ ├── P2pns.h │ ├── P2pns.ned │ ├── P2pnsCache.cc │ ├── P2pnsCache.h │ └── P2pnsMessage.msg └── simmud │ ├── SimMud.cc │ ├── SimMud.h │ ├── SimMud.msg │ └── SimMud.ned ├── tier3 └── xmlrpcinterface │ ├── XmlRpcInterface.cc │ ├── XmlRpcInterface.h │ ├── XmlRpcInterface.ned │ └── xmlrpc++ │ ├── XmlRpc.h │ ├── XmlRpcClient.cc │ ├── XmlRpcClient.h │ ├── XmlRpcDispatch.cc │ ├── XmlRpcDispatch.h │ ├── XmlRpcException.h │ ├── XmlRpcMutex.cc │ ├── XmlRpcMutex.h │ ├── XmlRpcServer.cc │ ├── XmlRpcServer.h │ ├── XmlRpcServerConnection.cc │ ├── XmlRpcServerConnection.h │ ├── XmlRpcServerMethod.cc │ ├── XmlRpcServerMethod.h │ ├── XmlRpcSocket.cc │ ├── XmlRpcSocket.h │ ├── XmlRpcSource.cc │ ├── XmlRpcSource.h │ ├── XmlRpcThread.cc │ ├── XmlRpcThread.h │ ├── XmlRpcThreadedServer.cc │ ├── XmlRpcThreadedServer.h │ ├── XmlRpcUtil.cc │ ├── XmlRpcUtil.h │ ├── XmlRpcValue.cc │ ├── XmlRpcValue.h │ └── base64.h └── underlay ├── inetunderlay ├── AccessNet.cc ├── AccessNet.h ├── AccessNet.ned ├── AccessRouter.ned ├── InetInfo.cc ├── InetInfo.h ├── InetOverlayHost.ned ├── InetUnderlay.ned ├── InetUnderlay6.ned ├── InetUnderlayConfigurator.cc ├── InetUnderlayConfigurator.h ├── InetUnderlayConfigurator.ned ├── OverlayAccessRouter.ned ├── OverlayRouter.ned ├── Router.ned ├── TunOutRouter.ned └── ipv6 │ ├── AccessRouter6.ned │ ├── InetOverlayHost6.ned │ ├── OverlayAccessRouter6.ned │ ├── OverlayRouter6.ned │ ├── Router6.ned │ └── TunOutRouter6.ned ├── reaseunderlay ├── ConnectReaSE.cc ├── ConnectReaSE.h ├── ConnectReaSE.ned ├── RUNetworkConfigurator.cc ├── RUNetworkConfigurator.h ├── RUNetworkConfigurator.ned ├── ReaSEInfo.cc ├── ReaSEInfo.h ├── ReaSEOverlayHost.ned ├── ReaSEUnderlay.ned ├── ReaSEUnderlayConfigurator.cc ├── ReaSEUnderlayConfigurator.h ├── ReaSEUnderlayConfigurator.ned └── topologies │ ├── topology_example │ └── topology_example.ned │ └── topology_tiny_oversim │ └── topology_tiny_oversim.ned ├── simpleunderlay ├── SimpleInfo.cc ├── SimpleInfo.h ├── SimpleMultiOverlayHost.ned ├── SimpleNodeEntry.cc ├── SimpleNodeEntry.h ├── SimpleOverlayHost.ned ├── SimpleTCP.cc ├── SimpleTCP.h ├── SimpleTCP.ned ├── SimpleUDP.cc ├── SimpleUDP.h ├── SimpleUDP.ned ├── SimpleUnderlay.ned ├── SimpleUnderlayConfigurator.cc ├── SimpleUnderlayConfigurator.h └── SimpleUnderlayConfigurator.ned └── singlehostunderlay ├── !WORK_IN_PROGRESS! ├── RealworldApp.cc ├── RealworldApp.h ├── RealworldApp.ned ├── RealworldConnector.cc ├── RealworldConnector.h ├── RealworldDevice.cc ├── RealworldDevice.h ├── RealworldDevice.ned ├── SingleHost.ned ├── SingleHostUnderlay.ned ├── SingleHostUnderlayConfigurator.cc ├── SingleHostUnderlayConfigurator.h ├── SingleHostUnderlayConfigurator.ned ├── TunOutDevice.cc ├── TunOutDevice.h ├── TunOutDevice.ned ├── UdpOutDevice.cc ├── UdpOutDevice.h ├── UdpOutDevice.ned ├── ZeroconfConnector.cc ├── ZeroconfConnector.h ├── ZeroconfConnector.ned ├── apptunoutscheduler.cc ├── apptunoutscheduler.h ├── realtimescheduler.cc ├── realtimescheduler.h ├── stun ├── README ├── stun.cc ├── stun.h ├── stun_udp.h └── udp.cc ├── tunoutscheduler.cc ├── tunoutscheduler.h ├── udpoutscheduler.cc └── udpoutscheduler.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/.gitignore -------------------------------------------------------------------------------- /.nedfolders: -------------------------------------------------------------------------------- 1 | src 2 | -------------------------------------------------------------------------------- /.oppbuildspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/.oppbuildspec -------------------------------------------------------------------------------- /INET.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/INET.patch -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/README -------------------------------------------------------------------------------- /doxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/doxy.cfg -------------------------------------------------------------------------------- /images/i3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/images/i3.gif -------------------------------------------------------------------------------- /images/i3c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/images/i3c.gif -------------------------------------------------------------------------------- /simulations/default.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/simulations/default.ini -------------------------------------------------------------------------------- /simulations/dht.trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/simulations/dht.trace -------------------------------------------------------------------------------- /simulations/dummy.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulations/maidsafe.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/simulations/maidsafe.ini -------------------------------------------------------------------------------- /simulations/nodes_2d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/simulations/nodes_2d.xml -------------------------------------------------------------------------------- /simulations/nodes_2d_15000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/simulations/nodes_2d_15000.xml -------------------------------------------------------------------------------- /simulations/nodes_3d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/simulations/nodes_3d.xml -------------------------------------------------------------------------------- /simulations/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/simulations/omnetpp.ini -------------------------------------------------------------------------------- /simulations/partition.trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/simulations/partition.trace -------------------------------------------------------------------------------- /simulations/realworld/realdhtapp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/simulations/realworld/realdhtapp.ini -------------------------------------------------------------------------------- /simulations/realworld/realdhtworld.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/simulations/realworld/realdhtworld.ini -------------------------------------------------------------------------------- /simulations/realworld/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/simulations/realworld/register.py -------------------------------------------------------------------------------- /simulations/realworld/setup-realdht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/simulations/realworld/setup-realdht -------------------------------------------------------------------------------- /simulations/realworld/setup-singlehosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/simulations/realworld/setup-singlehosts -------------------------------------------------------------------------------- /simulations/realworld/singlehost1.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/simulations/realworld/singlehost1.ini -------------------------------------------------------------------------------- /simulations/realworld/singlehost2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/simulations/realworld/singlehost2.ini -------------------------------------------------------------------------------- /simulations/thesis.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/simulations/thesis.ini -------------------------------------------------------------------------------- /simulations/tools/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/simulations/tools/plot.py -------------------------------------------------------------------------------- /simulations/tools/scatterplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/simulations/tools/scatterplot.py -------------------------------------------------------------------------------- /simulations/tools/vecplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/simulations/tools/vecplot.py -------------------------------------------------------------------------------- /simulations/traffic_profiles.parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/simulations/traffic_profiles.parameters -------------------------------------------------------------------------------- /simulations/validation.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/simulations/validation.ini -------------------------------------------------------------------------------- /simulations/verify.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/simulations/verify.ini -------------------------------------------------------------------------------- /src/applications/almtest/ALMTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/almtest/ALMTest.cc -------------------------------------------------------------------------------- /src/applications/almtest/ALMTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/almtest/ALMTest.h -------------------------------------------------------------------------------- /src/applications/almtest/ALMTest.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/almtest/ALMTest.ned -------------------------------------------------------------------------------- /src/applications/almtest/ALMTestTracedMessage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/almtest/ALMTestTracedMessage.msg -------------------------------------------------------------------------------- /src/applications/almtest/MessageObserver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/almtest/MessageObserver.cc -------------------------------------------------------------------------------- /src/applications/almtest/MessageObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/almtest/MessageObserver.h -------------------------------------------------------------------------------- /src/applications/almtest/MessageObserver.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/almtest/MessageObserver.ned -------------------------------------------------------------------------------- /src/applications/dht/!WORK_IN_PROGRESS!: -------------------------------------------------------------------------------- 1 | This is an alpha version of a DHT! 2 | -------------------------------------------------------------------------------- /src/applications/dht/DHT.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/dht/DHT.cc -------------------------------------------------------------------------------- /src/applications/dht/DHT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/dht/DHT.h -------------------------------------------------------------------------------- /src/applications/dht/DHT.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/dht/DHT.ned -------------------------------------------------------------------------------- /src/applications/dht/DHTDataStorage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/dht/DHTDataStorage.cc -------------------------------------------------------------------------------- /src/applications/dht/DHTDataStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/dht/DHTDataStorage.h -------------------------------------------------------------------------------- /src/applications/dht/DHTMessage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/dht/DHTMessage.msg -------------------------------------------------------------------------------- /src/applications/dht/RepeatedHashingDHT.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/dht/RepeatedHashingDHT.cc -------------------------------------------------------------------------------- /src/applications/dht/RepeatedHashingDHT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/dht/RepeatedHashingDHT.h -------------------------------------------------------------------------------- /src/applications/dht/RepeatedHashingDHT.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/dht/RepeatedHashingDHT.ned -------------------------------------------------------------------------------- /src/applications/dht/SymmetricDHT.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/dht/SymmetricDHT.cc -------------------------------------------------------------------------------- /src/applications/dht/SymmetricDHT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/dht/SymmetricDHT.h -------------------------------------------------------------------------------- /src/applications/dht/SymmetricDHT.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/dht/SymmetricDHT.ned -------------------------------------------------------------------------------- /src/applications/giasearchapp/!WORK_IN_PROGRESS!: -------------------------------------------------------------------------------- 1 | This is an alpha version of GIA! 2 | -------------------------------------------------------------------------------- /src/applications/giasearchapp/GIASearchApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/giasearchapp/GIASearchApp.cc -------------------------------------------------------------------------------- /src/applications/giasearchapp/GIASearchApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/giasearchapp/GIASearchApp.h -------------------------------------------------------------------------------- /src/applications/giasearchapp/GIASearchApp.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/giasearchapp/GIASearchApp.ned -------------------------------------------------------------------------------- /src/applications/giasearchapp/SearchMsgBookkeeping.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/giasearchapp/SearchMsgBookkeeping.cc -------------------------------------------------------------------------------- /src/applications/giasearchapp/SearchMsgBookkeeping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/giasearchapp/SearchMsgBookkeeping.h -------------------------------------------------------------------------------- /src/applications/i3/I3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/I3.cc -------------------------------------------------------------------------------- /src/applications/i3/I3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/I3.h -------------------------------------------------------------------------------- /src/applications/i3/I3.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/I3.ned -------------------------------------------------------------------------------- /src/applications/i3/I3BaseApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/I3BaseApp.cc -------------------------------------------------------------------------------- /src/applications/i3/I3BaseApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/I3BaseApp.h -------------------------------------------------------------------------------- /src/applications/i3/I3IPAddress.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/I3IPAddress.cc -------------------------------------------------------------------------------- /src/applications/i3/I3IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/I3IPAddress.h -------------------------------------------------------------------------------- /src/applications/i3/I3Identifier.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/I3Identifier.cc -------------------------------------------------------------------------------- /src/applications/i3/I3Identifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/I3Identifier.h -------------------------------------------------------------------------------- /src/applications/i3/I3IdentifierStack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/I3IdentifierStack.cc -------------------------------------------------------------------------------- /src/applications/i3/I3IdentifierStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/I3IdentifierStack.h -------------------------------------------------------------------------------- /src/applications/i3/I3Message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/I3Message.cc -------------------------------------------------------------------------------- /src/applications/i3/I3Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/I3Message.h -------------------------------------------------------------------------------- /src/applications/i3/I3Message.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/I3Message.msg -------------------------------------------------------------------------------- /src/applications/i3/I3SubIdentifier.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/I3SubIdentifier.cc -------------------------------------------------------------------------------- /src/applications/i3/I3SubIdentifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/I3SubIdentifier.h -------------------------------------------------------------------------------- /src/applications/i3/I3Trigger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/I3Trigger.cc -------------------------------------------------------------------------------- /src/applications/i3/I3Trigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/I3Trigger.h -------------------------------------------------------------------------------- /src/applications/i3/OverlayDummy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/OverlayDummy.cc -------------------------------------------------------------------------------- /src/applications/i3/OverlayDummy.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/OverlayDummy.ned -------------------------------------------------------------------------------- /src/applications/i3/OverlayI3.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/OverlayI3.ned -------------------------------------------------------------------------------- /src/applications/i3/TriggerTable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/TriggerTable.cc -------------------------------------------------------------------------------- /src/applications/i3/TriggerTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/TriggerTable.h -------------------------------------------------------------------------------- /src/applications/i3/TriggerTable.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/TriggerTable.ned -------------------------------------------------------------------------------- /src/applications/i3/i3Apps/I3Anycast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/i3Apps/I3Anycast.cc -------------------------------------------------------------------------------- /src/applications/i3/i3Apps/I3Anycast.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/i3Apps/I3Anycast.ned -------------------------------------------------------------------------------- /src/applications/i3/i3Apps/I3Composite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/i3Apps/I3Composite.cc -------------------------------------------------------------------------------- /src/applications/i3/i3Apps/I3Composite.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/i3Apps/I3Composite.ned -------------------------------------------------------------------------------- /src/applications/i3/i3Apps/I3HostMobility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/i3Apps/I3HostMobility.cc -------------------------------------------------------------------------------- /src/applications/i3/i3Apps/I3HostMobility.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/i3Apps/I3HostMobility.ned -------------------------------------------------------------------------------- /src/applications/i3/i3Apps/I3LatencyStretch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/i3Apps/I3LatencyStretch.cc -------------------------------------------------------------------------------- /src/applications/i3/i3Apps/I3LatencyStretch.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/i3Apps/I3LatencyStretch.ned -------------------------------------------------------------------------------- /src/applications/i3/i3Apps/I3Multicast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/i3Apps/I3Multicast.cc -------------------------------------------------------------------------------- /src/applications/i3/i3Apps/I3Multicast.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/i3Apps/I3Multicast.ned -------------------------------------------------------------------------------- /src/applications/i3/i3Apps/I3Session.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/i3Apps/I3Session.cc -------------------------------------------------------------------------------- /src/applications/i3/i3Apps/I3Session.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/i3Apps/I3Session.ned -------------------------------------------------------------------------------- /src/applications/i3/i3Apps/I3SessionMessage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/i3Apps/I3SessionMessage.msg -------------------------------------------------------------------------------- /src/applications/i3/i3Apps/I3TriggerRoutingTime.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/i3Apps/I3TriggerRoutingTime.cc -------------------------------------------------------------------------------- /src/applications/i3/i3Apps/I3TriggerRoutingTime.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/i3Apps/I3TriggerRoutingTime.ned -------------------------------------------------------------------------------- /src/applications/i3/i3Apps/I3Triggers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/i3Apps/I3Triggers.cc -------------------------------------------------------------------------------- /src/applications/i3/i3Apps/I3Triggers.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/i3Apps/I3Triggers.ned -------------------------------------------------------------------------------- /src/applications/i3/i3Apps/I3TriggersMessage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/i3/i3Apps/I3TriggersMessage.msg -------------------------------------------------------------------------------- /src/applications/kbrtestapp/KBRTestApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/kbrtestapp/KBRTestApp.cc -------------------------------------------------------------------------------- /src/applications/kbrtestapp/KBRTestApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/kbrtestapp/KBRTestApp.h -------------------------------------------------------------------------------- /src/applications/kbrtestapp/KBRTestApp.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/kbrtestapp/KBRTestApp.ned -------------------------------------------------------------------------------- /src/applications/kbrtestapp/KBRTestMessage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/kbrtestapp/KBRTestMessage.msg -------------------------------------------------------------------------------- /src/applications/myapplication/MyApplication.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/myapplication/MyApplication.cc -------------------------------------------------------------------------------- /src/applications/myapplication/MyApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/myapplication/MyApplication.h -------------------------------------------------------------------------------- /src/applications/myapplication/MyApplication.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/myapplication/MyApplication.ned -------------------------------------------------------------------------------- /src/applications/myapplication/MyMessage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/myapplication/MyMessage.msg -------------------------------------------------------------------------------- /src/applications/realworldtestapp/RealWorldTestApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/realworldtestapp/RealWorldTestApp.cc -------------------------------------------------------------------------------- /src/applications/realworldtestapp/RealWorldTestApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/realworldtestapp/RealWorldTestApp.h -------------------------------------------------------------------------------- /src/applications/realworldtestapp/RealWorldTestApp.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/realworldtestapp/RealWorldTestApp.ned -------------------------------------------------------------------------------- /src/applications/realworldtestapp/RealWorldTestMessage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/realworldtestapp/RealWorldTestMessage.msg -------------------------------------------------------------------------------- /src/applications/realworldtestapp/RealWorldTestPacketParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/realworldtestapp/RealWorldTestPacketParser.cc -------------------------------------------------------------------------------- /src/applications/realworldtestapp/RealWorldTestPacketParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/realworldtestapp/RealWorldTestPacketParser.h -------------------------------------------------------------------------------- /src/applications/realworldtestapp/RealWorldTestPacketParser.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/realworldtestapp/RealWorldTestPacketParser.ned -------------------------------------------------------------------------------- /src/applications/scribe/Scribe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/scribe/Scribe.cc -------------------------------------------------------------------------------- /src/applications/scribe/Scribe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/scribe/Scribe.h -------------------------------------------------------------------------------- /src/applications/scribe/Scribe.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/scribe/Scribe.ned -------------------------------------------------------------------------------- /src/applications/scribe/ScribeGroup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/scribe/ScribeGroup.cc -------------------------------------------------------------------------------- /src/applications/scribe/ScribeGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/scribe/ScribeGroup.h -------------------------------------------------------------------------------- /src/applications/scribe/ScribeMessage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/scribe/ScribeMessage.msg -------------------------------------------------------------------------------- /src/applications/simplegameclient/!WORK_IN_PROGRESS!: -------------------------------------------------------------------------------- 1 | This is an wip version of the SimpleGameClient! 2 | -------------------------------------------------------------------------------- /src/applications/simplegameclient/BoundingBox2D.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/BoundingBox2D.cc -------------------------------------------------------------------------------- /src/applications/simplegameclient/BoundingBox2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/BoundingBox2D.h -------------------------------------------------------------------------------- /src/applications/simplegameclient/ConnectivityProbeApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/ConnectivityProbeApp.cc -------------------------------------------------------------------------------- /src/applications/simplegameclient/ConnectivityProbeApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/ConnectivityProbeApp.h -------------------------------------------------------------------------------- /src/applications/simplegameclient/GlobalCoordinator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/GlobalCoordinator.cc -------------------------------------------------------------------------------- /src/applications/simplegameclient/GlobalCoordinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/GlobalCoordinator.h -------------------------------------------------------------------------------- /src/applications/simplegameclient/GlobalCoordinator.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/GlobalCoordinator.ned -------------------------------------------------------------------------------- /src/applications/simplegameclient/MovementGenerator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/MovementGenerator.cc -------------------------------------------------------------------------------- /src/applications/simplegameclient/MovementGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/MovementGenerator.h -------------------------------------------------------------------------------- /src/applications/simplegameclient/SCPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/SCPacket.h -------------------------------------------------------------------------------- /src/applications/simplegameclient/SimpleGameClient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/SimpleGameClient.cc -------------------------------------------------------------------------------- /src/applications/simplegameclient/SimpleGameClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/SimpleGameClient.h -------------------------------------------------------------------------------- /src/applications/simplegameclient/SimpleGameClient.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/SimpleGameClient.msg -------------------------------------------------------------------------------- /src/applications/simplegameclient/SimpleGameClient.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/SimpleGameClient.ned -------------------------------------------------------------------------------- /src/applications/simplegameclient/greatGathering.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/greatGathering.cc -------------------------------------------------------------------------------- /src/applications/simplegameclient/greatGathering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/greatGathering.h -------------------------------------------------------------------------------- /src/applications/simplegameclient/groupRoaming.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/groupRoaming.cc -------------------------------------------------------------------------------- /src/applications/simplegameclient/groupRoaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/groupRoaming.h -------------------------------------------------------------------------------- /src/applications/simplegameclient/hotspotRoaming.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/hotspotRoaming.cc -------------------------------------------------------------------------------- /src/applications/simplegameclient/hotspotRoaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/hotspotRoaming.h -------------------------------------------------------------------------------- /src/applications/simplegameclient/randomRoaming.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/randomRoaming.cc -------------------------------------------------------------------------------- /src/applications/simplegameclient/randomRoaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/randomRoaming.h -------------------------------------------------------------------------------- /src/applications/simplegameclient/realWorldRoaming.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/realWorldRoaming.cc -------------------------------------------------------------------------------- /src/applications/simplegameclient/realWorldRoaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/realWorldRoaming.h -------------------------------------------------------------------------------- /src/applications/simplegameclient/traverseRoaming.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/traverseRoaming.cc -------------------------------------------------------------------------------- /src/applications/simplegameclient/traverseRoaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/simplegameclient/traverseRoaming.h -------------------------------------------------------------------------------- /src/applications/tcpexampleapp/TCPExampleApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/tcpexampleapp/TCPExampleApp.cc -------------------------------------------------------------------------------- /src/applications/tcpexampleapp/TCPExampleApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/tcpexampleapp/TCPExampleApp.h -------------------------------------------------------------------------------- /src/applications/tcpexampleapp/TCPExampleApp.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/tcpexampleapp/TCPExampleApp.ned -------------------------------------------------------------------------------- /src/applications/tcpexampleapp/TCPExampleMessage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/tcpexampleapp/TCPExampleMessage.msg -------------------------------------------------------------------------------- /src/applications/tierdummy/TierDummy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/tierdummy/TierDummy.cc -------------------------------------------------------------------------------- /src/applications/tierdummy/TierDummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/applications/tierdummy/TierDummy.h -------------------------------------------------------------------------------- /src/common/AbstractLookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/AbstractLookup.h -------------------------------------------------------------------------------- /src/common/BaseApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/BaseApp.cc -------------------------------------------------------------------------------- /src/common/BaseApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/BaseApp.h -------------------------------------------------------------------------------- /src/common/BaseApp.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/BaseApp.ned -------------------------------------------------------------------------------- /src/common/BaseOverlay.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/BaseOverlay.cc -------------------------------------------------------------------------------- /src/common/BaseOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/BaseOverlay.h -------------------------------------------------------------------------------- /src/common/BaseOverlay.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/BaseOverlay.ned -------------------------------------------------------------------------------- /src/common/BaseRpc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/BaseRpc.cc -------------------------------------------------------------------------------- /src/common/BaseRpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/BaseRpc.h -------------------------------------------------------------------------------- /src/common/BaseRpc.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/BaseRpc.ned -------------------------------------------------------------------------------- /src/common/BaseTcpSupport.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/BaseTcpSupport.cc -------------------------------------------------------------------------------- /src/common/BaseTcpSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/BaseTcpSupport.h -------------------------------------------------------------------------------- /src/common/BinaryValue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/BinaryValue.cc -------------------------------------------------------------------------------- /src/common/BinaryValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/BinaryValue.h -------------------------------------------------------------------------------- /src/common/BootstrapList.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/BootstrapList.cc -------------------------------------------------------------------------------- /src/common/BootstrapList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/BootstrapList.h -------------------------------------------------------------------------------- /src/common/BootstrapList.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/BootstrapList.ned -------------------------------------------------------------------------------- /src/common/BootstrapNodeHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/BootstrapNodeHandle.h -------------------------------------------------------------------------------- /src/common/BroadcastInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/BroadcastInfo.h -------------------------------------------------------------------------------- /src/common/Churn.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/Churn.msg -------------------------------------------------------------------------------- /src/common/ChurnGenerator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/ChurnGenerator.cc -------------------------------------------------------------------------------- /src/common/ChurnGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/ChurnGenerator.h -------------------------------------------------------------------------------- /src/common/ChurnGenerator.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/ChurnGenerator.ned -------------------------------------------------------------------------------- /src/common/ChurnGeneratorAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/ChurnGeneratorAccess.h -------------------------------------------------------------------------------- /src/common/CommonMessages.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/CommonMessages.msg -------------------------------------------------------------------------------- /src/common/Comparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/Comparator.h -------------------------------------------------------------------------------- /src/common/CoordinateSystem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/CoordinateSystem.cc -------------------------------------------------------------------------------- /src/common/CoordinateSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/CoordinateSystem.h -------------------------------------------------------------------------------- /src/common/CryptoModule.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/CryptoModule.cc -------------------------------------------------------------------------------- /src/common/CryptoModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/CryptoModule.h -------------------------------------------------------------------------------- /src/common/CryptoModule.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/CryptoModule.ned -------------------------------------------------------------------------------- /src/common/ExtAPIMessages.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/ExtAPIMessages.msg -------------------------------------------------------------------------------- /src/common/ExtTCPSocketMap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/ExtTCPSocketMap.cc -------------------------------------------------------------------------------- /src/common/ExtTCPSocketMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/ExtTCPSocketMap.h -------------------------------------------------------------------------------- /src/common/FinisherModule.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/FinisherModule.cc -------------------------------------------------------------------------------- /src/common/FinisherModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/FinisherModule.h -------------------------------------------------------------------------------- /src/common/FinisherModule.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/FinisherModule.ned -------------------------------------------------------------------------------- /src/common/GenericPacketParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/GenericPacketParser.cc -------------------------------------------------------------------------------- /src/common/GenericPacketParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/GenericPacketParser.h -------------------------------------------------------------------------------- /src/common/GenericPacketParser.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/GenericPacketParser.ned -------------------------------------------------------------------------------- /src/common/GlobalFunctions.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/GlobalFunctions.ned -------------------------------------------------------------------------------- /src/common/GlobalNodeList.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/GlobalNodeList.cc -------------------------------------------------------------------------------- /src/common/GlobalNodeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/GlobalNodeList.h -------------------------------------------------------------------------------- /src/common/GlobalNodeList.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/GlobalNodeList.ned -------------------------------------------------------------------------------- /src/common/GlobalNodeListAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/GlobalNodeListAccess.h -------------------------------------------------------------------------------- /src/common/GlobalObserver.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/GlobalObserver.ned -------------------------------------------------------------------------------- /src/common/GlobalParameters.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/GlobalParameters.cc -------------------------------------------------------------------------------- /src/common/GlobalParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/GlobalParameters.h -------------------------------------------------------------------------------- /src/common/GlobalParameters.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/GlobalParameters.ned -------------------------------------------------------------------------------- /src/common/GlobalParametersAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/GlobalParametersAccess.h -------------------------------------------------------------------------------- /src/common/GlobalStatistics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/GlobalStatistics.cc -------------------------------------------------------------------------------- /src/common/GlobalStatistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/GlobalStatistics.h -------------------------------------------------------------------------------- /src/common/GlobalStatistics.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/GlobalStatistics.ned -------------------------------------------------------------------------------- /src/common/GlobalStatisticsAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/GlobalStatisticsAccess.h -------------------------------------------------------------------------------- /src/common/GlobalTraceManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/GlobalTraceManager.cc -------------------------------------------------------------------------------- /src/common/GlobalTraceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/GlobalTraceManager.h -------------------------------------------------------------------------------- /src/common/GlobalTraceManager.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/GlobalTraceManager.msg -------------------------------------------------------------------------------- /src/common/GlobalTraceManager.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/GlobalTraceManager.ned -------------------------------------------------------------------------------- /src/common/HashFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/HashFunc.h -------------------------------------------------------------------------------- /src/common/IOverlay.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/IOverlay.ned -------------------------------------------------------------------------------- /src/common/ITier.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/ITier.ned -------------------------------------------------------------------------------- /src/common/InitStages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/InitStages.h -------------------------------------------------------------------------------- /src/common/IterativeLookup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/IterativeLookup.cc -------------------------------------------------------------------------------- /src/common/IterativeLookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/IterativeLookup.h -------------------------------------------------------------------------------- /src/common/IterativeLookupConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/IterativeLookupConfiguration.h -------------------------------------------------------------------------------- /src/common/LifetimeChurn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/LifetimeChurn.cc -------------------------------------------------------------------------------- /src/common/LifetimeChurn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/LifetimeChurn.h -------------------------------------------------------------------------------- /src/common/LifetimeChurn.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/LifetimeChurn.ned -------------------------------------------------------------------------------- /src/common/LookupListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/LookupListener.h -------------------------------------------------------------------------------- /src/common/NeighborCache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/NeighborCache.cc -------------------------------------------------------------------------------- /src/common/NeighborCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/NeighborCache.h -------------------------------------------------------------------------------- /src/common/NeighborCache.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/NeighborCache.ned -------------------------------------------------------------------------------- /src/common/NoChurn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/NoChurn.cc -------------------------------------------------------------------------------- /src/common/NoChurn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/NoChurn.h -------------------------------------------------------------------------------- /src/common/NoChurn.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/NoChurn.ned -------------------------------------------------------------------------------- /src/common/NodeHandle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/NodeHandle.cc -------------------------------------------------------------------------------- /src/common/NodeHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/NodeHandle.h -------------------------------------------------------------------------------- /src/common/NodeVector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/NodeVector.cc -------------------------------------------------------------------------------- /src/common/NodeVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/NodeVector.h -------------------------------------------------------------------------------- /src/common/Nps.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/Nps.cc -------------------------------------------------------------------------------- /src/common/Nps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/Nps.h -------------------------------------------------------------------------------- /src/common/Nps.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/Nps.msg -------------------------------------------------------------------------------- /src/common/OverSimMessage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/OverSimMessage.cc -------------------------------------------------------------------------------- /src/common/OverSimMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/OverSimMessage.h -------------------------------------------------------------------------------- /src/common/OverSimMessage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/OverSimMessage.msg -------------------------------------------------------------------------------- /src/common/OverlayAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/OverlayAccess.h -------------------------------------------------------------------------------- /src/common/OverlayKey.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/OverlayKey.cc -------------------------------------------------------------------------------- /src/common/OverlayKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/OverlayKey.h -------------------------------------------------------------------------------- /src/common/PacketParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/PacketParser.h -------------------------------------------------------------------------------- /src/common/PacketParser.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/PacketParser.ned -------------------------------------------------------------------------------- /src/common/ParetoChurn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/ParetoChurn.cc -------------------------------------------------------------------------------- /src/common/ParetoChurn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/ParetoChurn.h -------------------------------------------------------------------------------- /src/common/ParetoChurn.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/ParetoChurn.ned -------------------------------------------------------------------------------- /src/common/PeerInfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/PeerInfo.cc -------------------------------------------------------------------------------- /src/common/PeerInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/PeerInfo.h -------------------------------------------------------------------------------- /src/common/PeerStorage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/PeerStorage.cc -------------------------------------------------------------------------------- /src/common/PeerStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/PeerStorage.h -------------------------------------------------------------------------------- /src/common/ProxNodeHandle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/ProxNodeHandle.cc -------------------------------------------------------------------------------- /src/common/ProxNodeHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/ProxNodeHandle.h -------------------------------------------------------------------------------- /src/common/RandomChurn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/RandomChurn.cc -------------------------------------------------------------------------------- /src/common/RandomChurn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/RandomChurn.h -------------------------------------------------------------------------------- /src/common/RandomChurn.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/RandomChurn.ned -------------------------------------------------------------------------------- /src/common/RecursiveLookup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/RecursiveLookup.cc -------------------------------------------------------------------------------- /src/common/RecursiveLookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/RecursiveLookup.h -------------------------------------------------------------------------------- /src/common/RpcListener.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/RpcListener.cc -------------------------------------------------------------------------------- /src/common/RpcListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/RpcListener.h -------------------------------------------------------------------------------- /src/common/RpcMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/RpcMacros.h -------------------------------------------------------------------------------- /src/common/RpcState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/RpcState.h -------------------------------------------------------------------------------- /src/common/SHA1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/SHA1.cc -------------------------------------------------------------------------------- /src/common/SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/SHA1.h -------------------------------------------------------------------------------- /src/common/SVivaldi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/SVivaldi.cc -------------------------------------------------------------------------------- /src/common/SVivaldi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/SVivaldi.h -------------------------------------------------------------------------------- /src/common/SimpleNcs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/SimpleNcs.cc -------------------------------------------------------------------------------- /src/common/SimpleNcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/SimpleNcs.h -------------------------------------------------------------------------------- /src/common/StringConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/StringConvert.h -------------------------------------------------------------------------------- /src/common/TierDummy.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/TierDummy.ned -------------------------------------------------------------------------------- /src/common/TopologyVis.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/TopologyVis.cc -------------------------------------------------------------------------------- /src/common/TopologyVis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/TopologyVis.h -------------------------------------------------------------------------------- /src/common/TraceChurn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/TraceChurn.cc -------------------------------------------------------------------------------- /src/common/TraceChurn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/TraceChurn.h -------------------------------------------------------------------------------- /src/common/TraceChurn.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/TraceChurn.ned -------------------------------------------------------------------------------- /src/common/TransportAddress.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/TransportAddress.cc -------------------------------------------------------------------------------- /src/common/TransportAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/TransportAddress.h -------------------------------------------------------------------------------- /src/common/UnderlayConfigurator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/UnderlayConfigurator.cc -------------------------------------------------------------------------------- /src/common/UnderlayConfigurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/UnderlayConfigurator.h -------------------------------------------------------------------------------- /src/common/UnderlayConfigurator.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/UnderlayConfigurator.ned -------------------------------------------------------------------------------- /src/common/UnderlayConfiguratorAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/UnderlayConfiguratorAccess.h -------------------------------------------------------------------------------- /src/common/Vector2D.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/Vector2D.cc -------------------------------------------------------------------------------- /src/common/Vector2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/Vector2D.h -------------------------------------------------------------------------------- /src/common/Vivaldi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/Vivaldi.cc -------------------------------------------------------------------------------- /src/common/Vivaldi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/Vivaldi.h -------------------------------------------------------------------------------- /src/common/cbr/!WORK_IN_PROGRESS!: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/cbr/!WORK_IN_PROGRESS! -------------------------------------------------------------------------------- /src/common/cbr/CBR-DHT.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/cbr/CBR-DHT.cc -------------------------------------------------------------------------------- /src/common/cbr/CBR-DHT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/cbr/CBR-DHT.h -------------------------------------------------------------------------------- /src/common/cbr/CBR-DHT.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/cbr/CBR-DHT.ned -------------------------------------------------------------------------------- /src/common/cbr/CBR-DHTMessage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/cbr/CBR-DHTMessage.msg -------------------------------------------------------------------------------- /src/common/cbr/CoordBasedRouting.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/cbr/CoordBasedRouting.cc -------------------------------------------------------------------------------- /src/common/cbr/CoordBasedRouting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/cbr/CoordBasedRouting.h -------------------------------------------------------------------------------- /src/common/cbr/CoordBasedRouting.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/cbr/CoordBasedRouting.ned -------------------------------------------------------------------------------- /src/common/cbr/CoordBasedRoutingAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/cbr/CoordBasedRoutingAccess.h -------------------------------------------------------------------------------- /src/common/cbr/CoordMessages.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/cbr/CoordMessages.msg -------------------------------------------------------------------------------- /src/common/cbr/Landmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/cbr/Landmark.cc -------------------------------------------------------------------------------- /src/common/cbr/Landmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/cbr/Landmark.h -------------------------------------------------------------------------------- /src/common/cbr/Landmark.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/cbr/Landmark.ned -------------------------------------------------------------------------------- /src/common/cbr/areas.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/cbr/areas.dtd -------------------------------------------------------------------------------- /src/common/cbr/areas_nodes_2d_15000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/cbr/areas_nodes_2d_15000.xml -------------------------------------------------------------------------------- /src/common/cbr/c2a.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/cbr/c2a.rb -------------------------------------------------------------------------------- /src/common/cbr/simplex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/cbr/simplex.cc -------------------------------------------------------------------------------- /src/common/cbr/simplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/cbr/simplex.h -------------------------------------------------------------------------------- /src/common/cbr/yang.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/cbr/yang.cc -------------------------------------------------------------------------------- /src/common/cbr/yang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/cbr/yang.h -------------------------------------------------------------------------------- /src/common/channels.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/channels.ned -------------------------------------------------------------------------------- /src/common/cnetcommbuffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/cnetcommbuffer.cc -------------------------------------------------------------------------------- /src/common/cnetcommbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/cnetcommbuffer.h -------------------------------------------------------------------------------- /src/common/hashWatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/hashWatch.h -------------------------------------------------------------------------------- /src/common/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/index.h -------------------------------------------------------------------------------- /src/common/oversim_byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/oversim_byteswap.h -------------------------------------------------------------------------------- /src/common/oversim_mapset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/common/oversim_mapset.h -------------------------------------------------------------------------------- /src/makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/makefrag -------------------------------------------------------------------------------- /src/overlay/bamboo/Bamboo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/bamboo/Bamboo.cc -------------------------------------------------------------------------------- /src/overlay/bamboo/Bamboo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/bamboo/Bamboo.h -------------------------------------------------------------------------------- /src/overlay/bamboo/Bamboo.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/bamboo/Bamboo.ned -------------------------------------------------------------------------------- /src/overlay/broose/!WORK_IN_PROGRESS!: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/broose/!WORK_IN_PROGRESS! -------------------------------------------------------------------------------- /src/overlay/broose/Broose.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/broose/Broose.cc -------------------------------------------------------------------------------- /src/overlay/broose/Broose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/broose/Broose.h -------------------------------------------------------------------------------- /src/overlay/broose/Broose.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/broose/Broose.ned -------------------------------------------------------------------------------- /src/overlay/broose/BrooseBucket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/broose/BrooseBucket.cc -------------------------------------------------------------------------------- /src/overlay/broose/BrooseBucket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/broose/BrooseBucket.h -------------------------------------------------------------------------------- /src/overlay/broose/BrooseHandle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/broose/BrooseHandle.cc -------------------------------------------------------------------------------- /src/overlay/broose/BrooseHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/broose/BrooseHandle.h -------------------------------------------------------------------------------- /src/overlay/broose/BrooseMessage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/broose/BrooseMessage.msg -------------------------------------------------------------------------------- /src/overlay/chord/Chord.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/chord/Chord.cc -------------------------------------------------------------------------------- /src/overlay/chord/Chord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/chord/Chord.h -------------------------------------------------------------------------------- /src/overlay/chord/Chord.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/chord/Chord.ned -------------------------------------------------------------------------------- /src/overlay/chord/ChordFingerTable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/chord/ChordFingerTable.cc -------------------------------------------------------------------------------- /src/overlay/chord/ChordFingerTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/chord/ChordFingerTable.h -------------------------------------------------------------------------------- /src/overlay/chord/ChordMessage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/chord/ChordMessage.msg -------------------------------------------------------------------------------- /src/overlay/chord/ChordSuccessorList.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/chord/ChordSuccessorList.cc -------------------------------------------------------------------------------- /src/overlay/chord/ChordSuccessorList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/chord/ChordSuccessorList.h -------------------------------------------------------------------------------- /src/overlay/epichord/EpiChord.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/epichord/EpiChord.cc -------------------------------------------------------------------------------- /src/overlay/epichord/EpiChord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/epichord/EpiChord.h -------------------------------------------------------------------------------- /src/overlay/epichord/EpiChord.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/epichord/EpiChord.ned -------------------------------------------------------------------------------- /src/overlay/epichord/EpiChordFingerCache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/epichord/EpiChordFingerCache.cc -------------------------------------------------------------------------------- /src/overlay/epichord/EpiChordFingerCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/epichord/EpiChordFingerCache.h -------------------------------------------------------------------------------- /src/overlay/epichord/EpiChordIterativeLookup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/epichord/EpiChordIterativeLookup.cc -------------------------------------------------------------------------------- /src/overlay/epichord/EpiChordIterativeLookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/epichord/EpiChordIterativeLookup.h -------------------------------------------------------------------------------- /src/overlay/epichord/EpiChordMessage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/epichord/EpiChordMessage.msg -------------------------------------------------------------------------------- /src/overlay/epichord/EpiChordNodeList.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/epichord/EpiChordNodeList.cc -------------------------------------------------------------------------------- /src/overlay/epichord/EpiChordNodeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/epichord/EpiChordNodeList.h -------------------------------------------------------------------------------- /src/overlay/gia/!WORK_IN_PROGRESS!: -------------------------------------------------------------------------------- 1 | This is an alpha version of GIA! 2 | -------------------------------------------------------------------------------- /src/overlay/gia/Gia.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/gia/Gia.cc -------------------------------------------------------------------------------- /src/overlay/gia/Gia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/gia/Gia.h -------------------------------------------------------------------------------- /src/overlay/gia/Gia.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/gia/Gia.ned -------------------------------------------------------------------------------- /src/overlay/gia/GiaKeyList.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/gia/GiaKeyList.cc -------------------------------------------------------------------------------- /src/overlay/gia/GiaKeyList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/gia/GiaKeyList.h -------------------------------------------------------------------------------- /src/overlay/gia/GiaKeyListModule.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/gia/GiaKeyListModule.cc -------------------------------------------------------------------------------- /src/overlay/gia/GiaKeyListModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/gia/GiaKeyListModule.h -------------------------------------------------------------------------------- /src/overlay/gia/GiaMessage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/gia/GiaMessage.msg -------------------------------------------------------------------------------- /src/overlay/gia/GiaMessageBookkeeping.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/gia/GiaMessageBookkeeping.cc -------------------------------------------------------------------------------- /src/overlay/gia/GiaMessageBookkeeping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/gia/GiaMessageBookkeeping.h -------------------------------------------------------------------------------- /src/overlay/gia/GiaNeighborCandidateList.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/gia/GiaNeighborCandidateList.cc -------------------------------------------------------------------------------- /src/overlay/gia/GiaNeighborCandidateList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/gia/GiaNeighborCandidateList.h -------------------------------------------------------------------------------- /src/overlay/gia/GiaNeighbors.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/gia/GiaNeighbors.cc -------------------------------------------------------------------------------- /src/overlay/gia/GiaNeighbors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/gia/GiaNeighbors.h -------------------------------------------------------------------------------- /src/overlay/gia/GiaNode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/gia/GiaNode.cc -------------------------------------------------------------------------------- /src/overlay/gia/GiaNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/gia/GiaNode.h -------------------------------------------------------------------------------- /src/overlay/gia/GiaTokenFactory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/gia/GiaTokenFactory.cc -------------------------------------------------------------------------------- /src/overlay/gia/GiaTokenFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/gia/GiaTokenFactory.h -------------------------------------------------------------------------------- /src/overlay/kademlia/Kademlia.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/kademlia/Kademlia.cc -------------------------------------------------------------------------------- /src/overlay/kademlia/Kademlia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/kademlia/Kademlia.h -------------------------------------------------------------------------------- /src/overlay/kademlia/Kademlia.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/kademlia/Kademlia.ned -------------------------------------------------------------------------------- /src/overlay/kademlia/KademliaBucket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/kademlia/KademliaBucket.cc -------------------------------------------------------------------------------- /src/overlay/kademlia/KademliaBucket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/kademlia/KademliaBucket.h -------------------------------------------------------------------------------- /src/overlay/kademlia/KademliaMessage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/kademlia/KademliaMessage.msg -------------------------------------------------------------------------------- /src/overlay/kademlia/KademliaNodeHandle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/kademlia/KademliaNodeHandle.cc -------------------------------------------------------------------------------- /src/overlay/kademlia/KademliaNodeHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/kademlia/KademliaNodeHandle.h -------------------------------------------------------------------------------- /src/overlay/koorde/Koorde.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/koorde/Koorde.cc -------------------------------------------------------------------------------- /src/overlay/koorde/Koorde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/koorde/Koorde.h -------------------------------------------------------------------------------- /src/overlay/koorde/Koorde.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/koorde/Koorde.ned -------------------------------------------------------------------------------- /src/overlay/myoverlay/MyOverlay.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/myoverlay/MyOverlay.cc -------------------------------------------------------------------------------- /src/overlay/myoverlay/MyOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/myoverlay/MyOverlay.h -------------------------------------------------------------------------------- /src/overlay/myoverlay/MyOverlay.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/myoverlay/MyOverlay.msg -------------------------------------------------------------------------------- /src/overlay/myoverlay/MyOverlay.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/myoverlay/MyOverlay.ned -------------------------------------------------------------------------------- /src/overlay/nice/!WORK_IN_PROGRESS!: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/nice/!WORK_IN_PROGRESS! -------------------------------------------------------------------------------- /src/overlay/nice/Nice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/nice/Nice.cc -------------------------------------------------------------------------------- /src/overlay/nice/Nice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/nice/Nice.h -------------------------------------------------------------------------------- /src/overlay/nice/Nice.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/nice/Nice.ned -------------------------------------------------------------------------------- /src/overlay/nice/NiceCluster.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/nice/NiceCluster.cc -------------------------------------------------------------------------------- /src/overlay/nice/NiceCluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/nice/NiceCluster.h -------------------------------------------------------------------------------- /src/overlay/nice/NiceMessage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/nice/NiceMessage.msg -------------------------------------------------------------------------------- /src/overlay/nice/NicePeerInfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/nice/NicePeerInfo.cc -------------------------------------------------------------------------------- /src/overlay/nice/NicePeerInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/nice/NicePeerInfo.h -------------------------------------------------------------------------------- /src/overlay/nice/combination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/nice/combination.h -------------------------------------------------------------------------------- /src/overlay/ntree/NTree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/ntree/NTree.cc -------------------------------------------------------------------------------- /src/overlay/ntree/NTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/ntree/NTree.h -------------------------------------------------------------------------------- /src/overlay/ntree/NTree.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/ntree/NTree.msg -------------------------------------------------------------------------------- /src/overlay/ntree/NTree.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/ntree/NTree.ned -------------------------------------------------------------------------------- /src/overlay/ntree/NTreeHelper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/ntree/NTreeHelper.cc -------------------------------------------------------------------------------- /src/overlay/ntree/NTreeHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/ntree/NTreeHelper.h -------------------------------------------------------------------------------- /src/overlay/pastry/BasePastry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pastry/BasePastry.cc -------------------------------------------------------------------------------- /src/overlay/pastry/BasePastry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pastry/BasePastry.h -------------------------------------------------------------------------------- /src/overlay/pastry/Pastry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pastry/Pastry.cc -------------------------------------------------------------------------------- /src/overlay/pastry/Pastry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pastry/Pastry.h -------------------------------------------------------------------------------- /src/overlay/pastry/Pastry.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pastry/Pastry.ned -------------------------------------------------------------------------------- /src/overlay/pastry/PastryLeafSet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pastry/PastryLeafSet.cc -------------------------------------------------------------------------------- /src/overlay/pastry/PastryLeafSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pastry/PastryLeafSet.h -------------------------------------------------------------------------------- /src/overlay/pastry/PastryMessage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pastry/PastryMessage.msg -------------------------------------------------------------------------------- /src/overlay/pastry/PastryNeighborhoodSet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pastry/PastryNeighborhoodSet.cc -------------------------------------------------------------------------------- /src/overlay/pastry/PastryNeighborhoodSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pastry/PastryNeighborhoodSet.h -------------------------------------------------------------------------------- /src/overlay/pastry/PastryRoutingTable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pastry/PastryRoutingTable.cc -------------------------------------------------------------------------------- /src/overlay/pastry/PastryRoutingTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pastry/PastryRoutingTable.h -------------------------------------------------------------------------------- /src/overlay/pastry/PastryStateObject.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pastry/PastryStateObject.cc -------------------------------------------------------------------------------- /src/overlay/pastry/PastryStateObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pastry/PastryStateObject.h -------------------------------------------------------------------------------- /src/overlay/pastry/PastryTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pastry/PastryTypes.h -------------------------------------------------------------------------------- /src/overlay/pubsubmmog/PubSubLobby.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pubsubmmog/PubSubLobby.cc -------------------------------------------------------------------------------- /src/overlay/pubsubmmog/PubSubLobby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pubsubmmog/PubSubLobby.h -------------------------------------------------------------------------------- /src/overlay/pubsubmmog/PubSubLobby.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pubsubmmog/PubSubLobby.ned -------------------------------------------------------------------------------- /src/overlay/pubsubmmog/PubSubMMOG.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pubsubmmog/PubSubMMOG.cc -------------------------------------------------------------------------------- /src/overlay/pubsubmmog/PubSubMMOG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pubsubmmog/PubSubMMOG.h -------------------------------------------------------------------------------- /src/overlay/pubsubmmog/PubSubMMOG.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pubsubmmog/PubSubMMOG.ned -------------------------------------------------------------------------------- /src/overlay/pubsubmmog/PubSubMessage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pubsubmmog/PubSubMessage.msg -------------------------------------------------------------------------------- /src/overlay/pubsubmmog/PubSubSubspace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pubsubmmog/PubSubSubspace.cc -------------------------------------------------------------------------------- /src/overlay/pubsubmmog/PubSubSubspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pubsubmmog/PubSubSubspace.h -------------------------------------------------------------------------------- /src/overlay/pubsubmmog/PubSubSubspaceId.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pubsubmmog/PubSubSubspaceId.cc -------------------------------------------------------------------------------- /src/overlay/pubsubmmog/PubSubSubspaceId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/pubsubmmog/PubSubSubspaceId.h -------------------------------------------------------------------------------- /src/overlay/quon/!WORK_IN_PROGRESS!: -------------------------------------------------------------------------------- 1 | These are work in progress versions of Quon! -------------------------------------------------------------------------------- /src/overlay/quon/ConnectivityProbeQuon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/quon/ConnectivityProbeQuon.cc -------------------------------------------------------------------------------- /src/overlay/quon/ConnectivityProbeQuon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/quon/ConnectivityProbeQuon.h -------------------------------------------------------------------------------- /src/overlay/quon/ConnectivityProbeQuon.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/quon/ConnectivityProbeQuon.ned -------------------------------------------------------------------------------- /src/overlay/quon/Quon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/quon/Quon.cc -------------------------------------------------------------------------------- /src/overlay/quon/Quon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/quon/Quon.h -------------------------------------------------------------------------------- /src/overlay/quon/Quon.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/quon/Quon.msg -------------------------------------------------------------------------------- /src/overlay/quon/Quon.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/quon/Quon.ned -------------------------------------------------------------------------------- /src/overlay/quon/QuonDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/quon/QuonDefs.h -------------------------------------------------------------------------------- /src/overlay/quon/QuonHelper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/quon/QuonHelper.cc -------------------------------------------------------------------------------- /src/overlay/quon/QuonHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/quon/QuonHelper.h -------------------------------------------------------------------------------- /src/overlay/vast/!WORK_IN_PROGRESS!: -------------------------------------------------------------------------------- 1 | This is an wip version of Vast! 2 | -------------------------------------------------------------------------------- /src/overlay/vast/ConnectivityProbe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/vast/ConnectivityProbe.cc -------------------------------------------------------------------------------- /src/overlay/vast/ConnectivityProbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/vast/ConnectivityProbe.h -------------------------------------------------------------------------------- /src/overlay/vast/ConnectivityProbe.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/vast/ConnectivityProbe.ned -------------------------------------------------------------------------------- /src/overlay/vast/Vast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/vast/Vast.cc -------------------------------------------------------------------------------- /src/overlay/vast/Vast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/vast/Vast.h -------------------------------------------------------------------------------- /src/overlay/vast/Vast.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/vast/Vast.msg -------------------------------------------------------------------------------- /src/overlay/vast/Vast.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/vast/Vast.ned -------------------------------------------------------------------------------- /src/overlay/vast/VastDefs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/vast/VastDefs.cc -------------------------------------------------------------------------------- /src/overlay/vast/VastDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/overlay/vast/VastDefs.h -------------------------------------------------------------------------------- /src/package.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/package.ned -------------------------------------------------------------------------------- /src/tier2/broadcasttestapp/BroadcastTestApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/broadcasttestapp/BroadcastTestApp.cc -------------------------------------------------------------------------------- /src/tier2/broadcasttestapp/BroadcastTestApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/broadcasttestapp/BroadcastTestApp.h -------------------------------------------------------------------------------- /src/tier2/broadcasttestapp/BroadcastTestApp.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/broadcasttestapp/BroadcastTestApp.ned -------------------------------------------------------------------------------- /src/tier2/broadcasttestapp/GlobalBroadcast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/broadcasttestapp/GlobalBroadcast.cc -------------------------------------------------------------------------------- /src/tier2/broadcasttestapp/GlobalBroadcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/broadcasttestapp/GlobalBroadcast.h -------------------------------------------------------------------------------- /src/tier2/broadcasttestapp/GlobalBroadcast.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/broadcasttestapp/GlobalBroadcast.ned -------------------------------------------------------------------------------- /src/tier2/broadcasttestapp/GlobalBroadcastAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/broadcasttestapp/GlobalBroadcastAccess.h -------------------------------------------------------------------------------- /src/tier2/dhttestapp/DHTTestApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/dhttestapp/DHTTestApp.cc -------------------------------------------------------------------------------- /src/tier2/dhttestapp/DHTTestApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/dhttestapp/DHTTestApp.h -------------------------------------------------------------------------------- /src/tier2/dhttestapp/DHTTestApp.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/dhttestapp/DHTTestApp.ned -------------------------------------------------------------------------------- /src/tier2/dhttestapp/DHTTestAppMessages.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/dhttestapp/DHTTestAppMessages.msg -------------------------------------------------------------------------------- /src/tier2/dhttestapp/GlobalDhtTestMap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/dhttestapp/GlobalDhtTestMap.cc -------------------------------------------------------------------------------- /src/tier2/dhttestapp/GlobalDhtTestMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/dhttestapp/GlobalDhtTestMap.h -------------------------------------------------------------------------------- /src/tier2/dhttestapp/GlobalDhtTestMap.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/dhttestapp/GlobalDhtTestMap.ned -------------------------------------------------------------------------------- /src/tier2/p2pns/!WORK_IN_PROGRESS!: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/p2pns/!WORK_IN_PROGRESS! -------------------------------------------------------------------------------- /src/tier2/p2pns/P2pns.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/p2pns/P2pns.cc -------------------------------------------------------------------------------- /src/tier2/p2pns/P2pns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/p2pns/P2pns.h -------------------------------------------------------------------------------- /src/tier2/p2pns/P2pns.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/p2pns/P2pns.ned -------------------------------------------------------------------------------- /src/tier2/p2pns/P2pnsCache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/p2pns/P2pnsCache.cc -------------------------------------------------------------------------------- /src/tier2/p2pns/P2pnsCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/p2pns/P2pnsCache.h -------------------------------------------------------------------------------- /src/tier2/p2pns/P2pnsMessage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/p2pns/P2pnsMessage.msg -------------------------------------------------------------------------------- /src/tier2/simmud/SimMud.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/simmud/SimMud.cc -------------------------------------------------------------------------------- /src/tier2/simmud/SimMud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/simmud/SimMud.h -------------------------------------------------------------------------------- /src/tier2/simmud/SimMud.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/simmud/SimMud.msg -------------------------------------------------------------------------------- /src/tier2/simmud/SimMud.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier2/simmud/SimMud.ned -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/XmlRpcInterface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/XmlRpcInterface.cc -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/XmlRpcInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/XmlRpcInterface.h -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/XmlRpcInterface.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/XmlRpcInterface.ned -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpc.h -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcClient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcClient.cc -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcClient.h -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcDispatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcDispatch.cc -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcDispatch.h -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcException.h -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcMutex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcMutex.cc -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcMutex.h -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcServer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcServer.cc -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcServer.h -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcServerConnection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcServerConnection.cc -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcServerConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcServerConnection.h -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcServerMethod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcServerMethod.cc -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcServerMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcServerMethod.h -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcSocket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcSocket.cc -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcSocket.h -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcSource.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcSource.cc -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcSource.h -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcThread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcThread.cc -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcThread.h -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcThreadedServer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcThreadedServer.cc -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcThreadedServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcThreadedServer.h -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcUtil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcUtil.cc -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcUtil.h -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcValue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcValue.cc -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/XmlRpcValue.h -------------------------------------------------------------------------------- /src/tier3/xmlrpcinterface/xmlrpc++/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/tier3/xmlrpcinterface/xmlrpc++/base64.h -------------------------------------------------------------------------------- /src/underlay/inetunderlay/AccessNet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/inetunderlay/AccessNet.cc -------------------------------------------------------------------------------- /src/underlay/inetunderlay/AccessNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/inetunderlay/AccessNet.h -------------------------------------------------------------------------------- /src/underlay/inetunderlay/AccessNet.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/inetunderlay/AccessNet.ned -------------------------------------------------------------------------------- /src/underlay/inetunderlay/AccessRouter.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/inetunderlay/AccessRouter.ned -------------------------------------------------------------------------------- /src/underlay/inetunderlay/InetInfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/inetunderlay/InetInfo.cc -------------------------------------------------------------------------------- /src/underlay/inetunderlay/InetInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/inetunderlay/InetInfo.h -------------------------------------------------------------------------------- /src/underlay/inetunderlay/InetOverlayHost.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/inetunderlay/InetOverlayHost.ned -------------------------------------------------------------------------------- /src/underlay/inetunderlay/InetUnderlay.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/inetunderlay/InetUnderlay.ned -------------------------------------------------------------------------------- /src/underlay/inetunderlay/InetUnderlay6.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/inetunderlay/InetUnderlay6.ned -------------------------------------------------------------------------------- /src/underlay/inetunderlay/InetUnderlayConfigurator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/inetunderlay/InetUnderlayConfigurator.cc -------------------------------------------------------------------------------- /src/underlay/inetunderlay/InetUnderlayConfigurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/inetunderlay/InetUnderlayConfigurator.h -------------------------------------------------------------------------------- /src/underlay/inetunderlay/InetUnderlayConfigurator.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/inetunderlay/InetUnderlayConfigurator.ned -------------------------------------------------------------------------------- /src/underlay/inetunderlay/OverlayAccessRouter.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/inetunderlay/OverlayAccessRouter.ned -------------------------------------------------------------------------------- /src/underlay/inetunderlay/OverlayRouter.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/inetunderlay/OverlayRouter.ned -------------------------------------------------------------------------------- /src/underlay/inetunderlay/Router.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/inetunderlay/Router.ned -------------------------------------------------------------------------------- /src/underlay/inetunderlay/TunOutRouter.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/inetunderlay/TunOutRouter.ned -------------------------------------------------------------------------------- /src/underlay/inetunderlay/ipv6/AccessRouter6.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/inetunderlay/ipv6/AccessRouter6.ned -------------------------------------------------------------------------------- /src/underlay/inetunderlay/ipv6/InetOverlayHost6.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/inetunderlay/ipv6/InetOverlayHost6.ned -------------------------------------------------------------------------------- /src/underlay/inetunderlay/ipv6/OverlayAccessRouter6.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/inetunderlay/ipv6/OverlayAccessRouter6.ned -------------------------------------------------------------------------------- /src/underlay/inetunderlay/ipv6/OverlayRouter6.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/inetunderlay/ipv6/OverlayRouter6.ned -------------------------------------------------------------------------------- /src/underlay/inetunderlay/ipv6/Router6.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/inetunderlay/ipv6/Router6.ned -------------------------------------------------------------------------------- /src/underlay/inetunderlay/ipv6/TunOutRouter6.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/inetunderlay/ipv6/TunOutRouter6.ned -------------------------------------------------------------------------------- /src/underlay/reaseunderlay/ConnectReaSE.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/reaseunderlay/ConnectReaSE.cc -------------------------------------------------------------------------------- /src/underlay/reaseunderlay/ConnectReaSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/reaseunderlay/ConnectReaSE.h -------------------------------------------------------------------------------- /src/underlay/reaseunderlay/ConnectReaSE.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/reaseunderlay/ConnectReaSE.ned -------------------------------------------------------------------------------- /src/underlay/reaseunderlay/RUNetworkConfigurator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/reaseunderlay/RUNetworkConfigurator.cc -------------------------------------------------------------------------------- /src/underlay/reaseunderlay/RUNetworkConfigurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/reaseunderlay/RUNetworkConfigurator.h -------------------------------------------------------------------------------- /src/underlay/reaseunderlay/RUNetworkConfigurator.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/reaseunderlay/RUNetworkConfigurator.ned -------------------------------------------------------------------------------- /src/underlay/reaseunderlay/ReaSEInfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/reaseunderlay/ReaSEInfo.cc -------------------------------------------------------------------------------- /src/underlay/reaseunderlay/ReaSEInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/reaseunderlay/ReaSEInfo.h -------------------------------------------------------------------------------- /src/underlay/reaseunderlay/ReaSEOverlayHost.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/reaseunderlay/ReaSEOverlayHost.ned -------------------------------------------------------------------------------- /src/underlay/reaseunderlay/ReaSEUnderlay.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/reaseunderlay/ReaSEUnderlay.ned -------------------------------------------------------------------------------- /src/underlay/reaseunderlay/ReaSEUnderlayConfigurator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/reaseunderlay/ReaSEUnderlayConfigurator.cc -------------------------------------------------------------------------------- /src/underlay/reaseunderlay/ReaSEUnderlayConfigurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/reaseunderlay/ReaSEUnderlayConfigurator.h -------------------------------------------------------------------------------- /src/underlay/reaseunderlay/ReaSEUnderlayConfigurator.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/reaseunderlay/ReaSEUnderlayConfigurator.ned -------------------------------------------------------------------------------- /src/underlay/reaseunderlay/topologies/topology_example/topology_example.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/reaseunderlay/topologies/topology_example/topology_example.ned -------------------------------------------------------------------------------- /src/underlay/reaseunderlay/topologies/topology_tiny_oversim/topology_tiny_oversim.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/reaseunderlay/topologies/topology_tiny_oversim/topology_tiny_oversim.ned -------------------------------------------------------------------------------- /src/underlay/simpleunderlay/SimpleInfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/simpleunderlay/SimpleInfo.cc -------------------------------------------------------------------------------- /src/underlay/simpleunderlay/SimpleInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/simpleunderlay/SimpleInfo.h -------------------------------------------------------------------------------- /src/underlay/simpleunderlay/SimpleMultiOverlayHost.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/simpleunderlay/SimpleMultiOverlayHost.ned -------------------------------------------------------------------------------- /src/underlay/simpleunderlay/SimpleNodeEntry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/simpleunderlay/SimpleNodeEntry.cc -------------------------------------------------------------------------------- /src/underlay/simpleunderlay/SimpleNodeEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/simpleunderlay/SimpleNodeEntry.h -------------------------------------------------------------------------------- /src/underlay/simpleunderlay/SimpleOverlayHost.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/simpleunderlay/SimpleOverlayHost.ned -------------------------------------------------------------------------------- /src/underlay/simpleunderlay/SimpleTCP.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/simpleunderlay/SimpleTCP.cc -------------------------------------------------------------------------------- /src/underlay/simpleunderlay/SimpleTCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/simpleunderlay/SimpleTCP.h -------------------------------------------------------------------------------- /src/underlay/simpleunderlay/SimpleTCP.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/simpleunderlay/SimpleTCP.ned -------------------------------------------------------------------------------- /src/underlay/simpleunderlay/SimpleUDP.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/simpleunderlay/SimpleUDP.cc -------------------------------------------------------------------------------- /src/underlay/simpleunderlay/SimpleUDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/simpleunderlay/SimpleUDP.h -------------------------------------------------------------------------------- /src/underlay/simpleunderlay/SimpleUDP.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/simpleunderlay/SimpleUDP.ned -------------------------------------------------------------------------------- /src/underlay/simpleunderlay/SimpleUnderlay.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/simpleunderlay/SimpleUnderlay.ned -------------------------------------------------------------------------------- /src/underlay/simpleunderlay/SimpleUnderlayConfigurator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/simpleunderlay/SimpleUnderlayConfigurator.cc -------------------------------------------------------------------------------- /src/underlay/simpleunderlay/SimpleUnderlayConfigurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/simpleunderlay/SimpleUnderlayConfigurator.h -------------------------------------------------------------------------------- /src/underlay/simpleunderlay/SimpleUnderlayConfigurator.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/simpleunderlay/SimpleUnderlayConfigurator.ned -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/!WORK_IN_PROGRESS!: -------------------------------------------------------------------------------- 1 | ZeroconfConnector and BootstrapList are still alpha! 2 | -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/RealworldApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/RealworldApp.cc -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/RealworldApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/RealworldApp.h -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/RealworldApp.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/RealworldApp.ned -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/RealworldConnector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/RealworldConnector.cc -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/RealworldConnector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/RealworldConnector.h -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/RealworldDevice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/RealworldDevice.cc -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/RealworldDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/RealworldDevice.h -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/RealworldDevice.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/RealworldDevice.ned -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/SingleHost.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/SingleHost.ned -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/SingleHostUnderlay.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/SingleHostUnderlay.ned -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/SingleHostUnderlayConfigurator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/SingleHostUnderlayConfigurator.cc -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/SingleHostUnderlayConfigurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/SingleHostUnderlayConfigurator.h -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/SingleHostUnderlayConfigurator.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/SingleHostUnderlayConfigurator.ned -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/TunOutDevice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/TunOutDevice.cc -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/TunOutDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/TunOutDevice.h -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/TunOutDevice.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/TunOutDevice.ned -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/UdpOutDevice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/UdpOutDevice.cc -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/UdpOutDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/UdpOutDevice.h -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/UdpOutDevice.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/UdpOutDevice.ned -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/ZeroconfConnector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/ZeroconfConnector.cc -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/ZeroconfConnector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/ZeroconfConnector.h -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/ZeroconfConnector.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/ZeroconfConnector.ned -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/apptunoutscheduler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/apptunoutscheduler.cc -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/apptunoutscheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/apptunoutscheduler.h -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/realtimescheduler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/realtimescheduler.cc -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/realtimescheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/realtimescheduler.h -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/stun/README: -------------------------------------------------------------------------------- 1 | The files in this directory are from stund_0.96_Aug13.tgz. 2 | 3 | -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/stun/stun.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/stun/stun.cc -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/stun/stun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/stun/stun.h -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/stun/stun_udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/stun/stun_udp.h -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/stun/udp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/stun/udp.cc -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/tunoutscheduler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/tunoutscheduler.cc -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/tunoutscheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/tunoutscheduler.h -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/udpoutscheduler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/udpoutscheduler.cc -------------------------------------------------------------------------------- /src/underlay/singlehostunderlay/udpoutscheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/oversim/HEAD/src/underlay/singlehostunderlay/udpoutscheduler.h --------------------------------------------------------------------------------