Logo AND Algorithmique Numérique Distribuée

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