tgen.torclient.graphml.xml 1.2 KB

1234567891011121314151617181920212223242526272829
  1. <graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
  2. <key attr.name="socksproxy" attr.type="string" for="node" id="d7" />
  3. <key attr.name="peers" attr.type="string" for="node" id="d5" />
  4. <key attr.name="sendsize" attr.type="string" for="node" id="d3" />
  5. <key attr.name="recvsize" attr.type="string" for="node" id="d2" />
  6. <key attr.name="count" attr.type="string" for="node" id="d1" />
  7. <key attr.name="time" attr.type="string" for="node" id="d0" />
  8. <graph edgedefault="directed">
  9. <node id="start">
  10. <data key="d5">fileserver:80</data>
  11. <data key="d7">localhost:9000</data>
  12. </node>
  13. <node id="stream">
  14. <data key="d2">1 MiB</data>
  15. <data key="d3">1 KiB</data>
  16. </node>
  17. <node id="pause">
  18. <data key="d0">1,2,3,4,5,6,7,8,9,10</data>
  19. </node>
  20. <node id="end">
  21. <data key="d1">10</data>
  22. <data key="d0">3600</data>
  23. </node>
  24. <edge source="start" target="stream" />
  25. <edge source="stream" target="end" />
  26. <edge source="end" target="pause" />
  27. <edge source="pause" target="start" />
  28. </graph>
  29. </graphml>