Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
2b113e8362090a5f699285467f556f0402c284ad
[simgrid.git] / examples / java / dht / kademlia / kademlia.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd">
3 <platform version="4">
4
5   <process host="node-0.acme.org" function="dht.kademlia.Node">
6     <argument value="0"/>        <!-- my id -->
7     <argument value ="900"/>     <!-- deadline -->
8   </process>
9
10   <process host="node-1.acme.org" function="dht.kademlia.Node">
11     <argument value="1"/>        <!-- my id -->
12     <argument value="0"/>        <!-- known id -->
13     <argument value ="900"/>     <!-- deadline -->
14   </process>
15
16   <process host="node-2.acme.org" function="dht.kademlia.Node">
17     <argument value="2"/>        <!-- my id -->
18     <argument value="0"/>        <!-- known id -->
19     <argument value ="900"/>     <!-- deadline -->
20   </process>
21
22   <process host="node-3.acme.org" function="dht.kademlia.Node">
23     <argument value="4"/>        <!-- my id -->
24     <argument value="0"/>        <!-- known id -->
25     <argument value ="900"/>     <!-- deadline -->
26   </process>
27 </platform>