├── .gitignore ├── LICENSE ├── README.md ├── as_links.dat ├── cacheNode.py ├── caida.org.dat ├── cdnsim.py ├── decorations.py ├── eventQueueKeeper.py ├── geoAS ├── de.dat ├── de │ ├── accessNodes.cache │ ├── as2ip.cache │ ├── asGraph.cache │ ├── contentNodes.cache │ ├── contentProvider.cache │ └── userPickedSetup.cache ├── es.dat ├── es │ ├── accessNodes.cache │ ├── as2ip.cache │ ├── asGraph.cache │ ├── contentNodes.cache │ └── contentProvider.cache ├── fr.dat ├── fr │ ├── accessNodes.cache │ ├── as2ip.cache │ ├── asGraph.cache │ ├── contentNodes.cache │ └── contentProvider.cache ├── it.dat ├── it │ ├── accessNodes.cache │ ├── as2ip.cache │ ├── asGraph.cache │ ├── contentNodes.cache │ └── contentProvider.cache ├── ru.dat ├── ru │ ├── accessNodes.cache │ ├── as2ip.cache │ ├── asGraph.cache │ ├── contentNodes.cache │ └── contentProvider.cache ├── sk.dat ├── sk │ ├── accessNodes.cache │ ├── as2ip.cache │ ├── asGraph.cache │ ├── contentNodes.cache │ └── contentProvider.cache ├── us.dat └── us │ ├── accessNodes.cache │ ├── as2ip.cache │ ├── asGraph.cache │ ├── contentNodes.cache │ └── contentProvider.cache ├── geoNetGraph.py ├── hl_sim.py ├── netDataStream.py ├── netLink.py ├── origin.dat ├── sim-scenarios └── demo.sim ├── sim_event.py ├── sim_globals.py └── userRequests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/README.md -------------------------------------------------------------------------------- /as_links.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/as_links.dat -------------------------------------------------------------------------------- /cacheNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/cacheNode.py -------------------------------------------------------------------------------- /caida.org.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/caida.org.dat -------------------------------------------------------------------------------- /cdnsim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/cdnsim.py -------------------------------------------------------------------------------- /decorations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/decorations.py -------------------------------------------------------------------------------- /eventQueueKeeper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/eventQueueKeeper.py -------------------------------------------------------------------------------- /geoAS/de.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/de.dat -------------------------------------------------------------------------------- /geoAS/de/accessNodes.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/de/accessNodes.cache -------------------------------------------------------------------------------- /geoAS/de/as2ip.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/de/as2ip.cache -------------------------------------------------------------------------------- /geoAS/de/asGraph.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/de/asGraph.cache -------------------------------------------------------------------------------- /geoAS/de/contentNodes.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/de/contentNodes.cache -------------------------------------------------------------------------------- /geoAS/de/contentProvider.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/de/contentProvider.cache -------------------------------------------------------------------------------- /geoAS/de/userPickedSetup.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/de/userPickedSetup.cache -------------------------------------------------------------------------------- /geoAS/es.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/es.dat -------------------------------------------------------------------------------- /geoAS/es/accessNodes.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/es/accessNodes.cache -------------------------------------------------------------------------------- /geoAS/es/as2ip.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/es/as2ip.cache -------------------------------------------------------------------------------- /geoAS/es/asGraph.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/es/asGraph.cache -------------------------------------------------------------------------------- /geoAS/es/contentNodes.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/es/contentNodes.cache -------------------------------------------------------------------------------- /geoAS/es/contentProvider.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/es/contentProvider.cache -------------------------------------------------------------------------------- /geoAS/fr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/fr.dat -------------------------------------------------------------------------------- /geoAS/fr/accessNodes.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/fr/accessNodes.cache -------------------------------------------------------------------------------- /geoAS/fr/as2ip.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/fr/as2ip.cache -------------------------------------------------------------------------------- /geoAS/fr/asGraph.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/fr/asGraph.cache -------------------------------------------------------------------------------- /geoAS/fr/contentNodes.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/fr/contentNodes.cache -------------------------------------------------------------------------------- /geoAS/fr/contentProvider.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/fr/contentProvider.cache -------------------------------------------------------------------------------- /geoAS/it.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/it.dat -------------------------------------------------------------------------------- /geoAS/it/accessNodes.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/it/accessNodes.cache -------------------------------------------------------------------------------- /geoAS/it/as2ip.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/it/as2ip.cache -------------------------------------------------------------------------------- /geoAS/it/asGraph.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/it/asGraph.cache -------------------------------------------------------------------------------- /geoAS/it/contentNodes.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/it/contentNodes.cache -------------------------------------------------------------------------------- /geoAS/it/contentProvider.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/it/contentProvider.cache -------------------------------------------------------------------------------- /geoAS/ru.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/ru.dat -------------------------------------------------------------------------------- /geoAS/ru/accessNodes.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/ru/accessNodes.cache -------------------------------------------------------------------------------- /geoAS/ru/as2ip.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/ru/as2ip.cache -------------------------------------------------------------------------------- /geoAS/ru/asGraph.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/ru/asGraph.cache -------------------------------------------------------------------------------- /geoAS/ru/contentNodes.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/ru/contentNodes.cache -------------------------------------------------------------------------------- /geoAS/ru/contentProvider.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/ru/contentProvider.cache -------------------------------------------------------------------------------- /geoAS/sk.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/sk.dat -------------------------------------------------------------------------------- /geoAS/sk/accessNodes.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/sk/accessNodes.cache -------------------------------------------------------------------------------- /geoAS/sk/as2ip.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/sk/as2ip.cache -------------------------------------------------------------------------------- /geoAS/sk/asGraph.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/sk/asGraph.cache -------------------------------------------------------------------------------- /geoAS/sk/contentNodes.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/sk/contentNodes.cache -------------------------------------------------------------------------------- /geoAS/sk/contentProvider.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/sk/contentProvider.cache -------------------------------------------------------------------------------- /geoAS/us.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/us.dat -------------------------------------------------------------------------------- /geoAS/us/accessNodes.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/us/accessNodes.cache -------------------------------------------------------------------------------- /geoAS/us/as2ip.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/us/as2ip.cache -------------------------------------------------------------------------------- /geoAS/us/asGraph.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/us/asGraph.cache -------------------------------------------------------------------------------- /geoAS/us/contentNodes.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/us/contentNodes.cache -------------------------------------------------------------------------------- /geoAS/us/contentProvider.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoAS/us/contentProvider.cache -------------------------------------------------------------------------------- /geoNetGraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/geoNetGraph.py -------------------------------------------------------------------------------- /hl_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/hl_sim.py -------------------------------------------------------------------------------- /netDataStream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/netDataStream.py -------------------------------------------------------------------------------- /netLink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/netLink.py -------------------------------------------------------------------------------- /origin.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/origin.dat -------------------------------------------------------------------------------- /sim-scenarios/demo.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/sim-scenarios/demo.sim -------------------------------------------------------------------------------- /sim_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/sim_event.py -------------------------------------------------------------------------------- /sim_globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/sim_globals.py -------------------------------------------------------------------------------- /userRequests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnplab/cdnsim/HEAD/userRequests.py --------------------------------------------------------------------------------