Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
7be439542b76780e5ef73d6196ddc616a7ef3ccc
[simgrid.git] / examples / lua / bittorrent / bittorrent.lua
1 -- Copyright (c) 2012, 2014. The SimGrid Team.
2 -- All rights reserved.
3
4 -- This program is free software; you can redistribute it and/or modify it
5 -- under the terms of the license (GNU LGPL) which comes with this package.
6
7 -- A SimGrid Lua implementation of the Bittorrent protocol.
8
9 require("simgrid")
10
11 require("peer")
12 require("tracker")
13
14 simgrid.platform(arg[1] or  "../../platforms/platform.xml")
15 simgrid.application(arg[2] or "bittorrent.xml")
16 simgrid.run()