Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cleanups in java examples (2/2)
[simgrid.git] / examples / java / bittorrent / bittorrent.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd">
3 <platform version="4">
4   <process host="Jacquelin" function="bittorrent.Tracker">
5     <argument value="3000" />
6   </process>
7
8   <process host="Boivin" function="bittorrent.Peer">
9     <argument value="00000002"/>      <!-- my id -->
10     <argument value="5000" />      <!-- end time -->
11     <argument value="1" />     <!-- indicates if the bittorrent.Peer is a seed at the begining of the simulation -->
12   </process>
13   <process host="Jean_Yves" function="bittorrent.Peer">
14     <argument value="00000003"/>         <!-- my id -->
15     <argument value="5000" />         <!-- end time -->
16   </process>
17   <process host="TeX" function="bittorrent.Peer">
18     <argument value="00000004"/>   <!-- my id -->
19     <argument value="5000" />   <!-- end time -->
20   </process>
21   <process host="Geoff" function="bittorrent.Peer">
22     <argument value="00000005"/>     <!-- my id -->
23     <argument value="5000" />     <!-- end time -->
24   </process>
25   <process host="Disney" function="bittorrent.Peer">
26     <argument value="00000006"/>      <!-- my id -->
27     <argument value="5000" />      <!-- end time -->
28   </process>
29   <process host="iRMX" function="bittorrent.Peer">
30     <argument value="00000007"/>    <!-- my id -->
31     <argument value="5000" />    <!-- end time -->
32   </process>
33   <process host="McGee" function="bittorrent.Peer">
34     <argument value="00000008"/>     <!-- my id -->
35     <argument value="5000" />     <!-- end time -->
36   </process>
37 </platform>