X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7bc0eaf70cf34961d99866cdb9fee612a3d9130a..3880211b850704febd20f1a482b4617919ed9025:/examples/lua/bittorrent/bittorrent.lua diff --git a/examples/lua/bittorrent/bittorrent.lua b/examples/lua/bittorrent/bittorrent.lua index 26381a7fe0..7be439542b 100644 --- a/examples/lua/bittorrent/bittorrent.lua +++ b/examples/lua/bittorrent/bittorrent.lua @@ -1,10 +1,16 @@ +-- Copyright (c) 2012, 2014. The SimGrid Team. +-- All rights reserved. + +-- This program is free software; you can redistribute it and/or modify it +-- under the terms of the license (GNU LGPL) which comes with this package. + -- A SimGrid Lua implementation of the Bittorrent protocol. require("simgrid") - + require("peer") require("tracker") -simgrid.platform(arg[1] or "../../msg/msg_platform.xml") +simgrid.platform(arg[1] or "../../platforms/platform.xml") simgrid.application(arg[2] or "bittorrent.xml") -simgrid.run() \ No newline at end of file +simgrid.run()