Advertisement
Guest User

Chord Configuration FIle

a guest
Sep 16th, 2012
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. # PEERSIM CHORD
  2.  
  3. # random.seed 1234567890
  4. simulation.endtime 10^6
  5. simulation.logtime 10^6
  6.  
  7. simulation.experiments 1
  8.  
  9. network.size 5000
  10.  
  11. protocol.tr UniformRandomTransport
  12. {
  13. mindelay 0
  14. maxdelay 0
  15. }
  16.  
  17. protocol.my ChordProtocol
  18. {
  19. transport tr
  20. }
  21.  
  22. control.traffic TrafficGenerator
  23. {
  24. protocol my
  25. step 100
  26. }
  27.  
  28. init.create CreateNw
  29. {
  30. protocol my
  31. idLength 128
  32. succListSize 12
  33. }
  34.  
  35. control.observer MessageCounterObserver
  36. {
  37. protocol my
  38. step 90000
  39. }
  40.  
  41. control.dnet DynamicNetwork
  42. {
  43. add 20
  44. add -25
  45. minsize 3000
  46. maxsize 7000
  47. step 100000
  48. init.0 ChordInitializer
  49. {
  50. protocol my
  51. }
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement