fix
[oweals/gnunet.git] / doc / structure.dot
index f7f0ac451c114d3c1dea234e67046357be11594d..da261be4245b760d041edcf0a38f0bce7f64423c 100644 (file)
@@ -8,14 +8,16 @@
 
 digraph dependencies {
 splines = true;
-
+  voting [shape=house];
+  voting -> consensus;
+  voting -> stream;
   fs [shape=house];
   fs -> dht;
   fs -> core;
   fs -> datastore;
-  fs -> stream [style=dashed];
-  fs -> ats [style=dashed];
-  fs -> block [stlye=dotted,color=blue];
+  fs -> stream;
+  fs -> ats;
+  fs -> block [style=dotted,color=blue];
   exit -> mesh;
   exit -> tun;
   vpn -> mesh;
@@ -24,33 +26,35 @@ splines = true;
   pt -> mesh;
   pt -> vpn;
   pt -> dns;
+  dv -> ats;
   dns -> mesh;
   dns -> tun;
   gns [shape=house];
   gns -> namestore;
   gns -> dns;
   gns -> dht;
-  gns -> stream [style=dashed];
   gns -> block [style=dotted,color=blue];
 //  psycd [style=dashed,shape=house];
 //  psycd -> mesh [style=dashed];
   stream [shape=diamond];
   stream -> mesh;
-  stream -> lockmanager [style=dashed];
+  stream -> lockmanager;
   dht -> core;
   dht -> nse;
   dht -> block;
   dht -> datacache;
-  dht -> ats [style=dashed];
+//  dht -> ats [style=dashed];
   nse -> core;
+  regex -> block [style=dotted,color=blue];
   block [shape=diamond];
   datacache [shape=diamond];
   mesh -> core [weight=2];
   mesh -> dht;
   mesh -> regex;
-  mesh -> block [stlye=dashed,color=blue];
-  mesh -> ats [style=dashed];
+  mesh -> block [style=dotted,color=blue];
+//  mesh -> ats [style=dashed];
   regex [shape=diamond];
+  regex -> dht;
   core -> transport;
   core -> peerinfo;
   topology [shape=box];
@@ -66,39 +70,16 @@ splines = true;
   transport -> peerinfo;
   transport -> nat;
   transport -> fragmentation;
-  dv [style=dashed,shape=egg,layer=core];
-  dv -> transport [style=dashed,color=blue];
-  dv -> core [style=dashed];
-  core -> dv [style=invis]; // force dv below core
+  dv [shape=egg];
+  dv -> transport [color=blue,style=dotted];
+  dv -> core;
+  dv -> consensus;
+  consensus -> mesh;
   peerinfo -> hello;
   fragmentation [shape=diamond];
   hello [shape=diamond];
   nat [shape=diamond];
   tun [shape=diamond];
 
-  subgraph STREAM {
-    stream; lockmanager;
-  }
-  subgraph DHT {
-    dht; nse; datacache; block;
-  }
-  subgraph MESH {
-    mesh; regex;
-  }
-  subgraph TRANSPORT {
-    transport; dv; peerinfo; hello; nat; ats;
-  }
-  subgraph CORE {
-    core; hostlist; topology;
-  }
-  subgraph FS {
-    fs; datastore;
-  }
-  subgraph GNS {
-    gns; namestore;
-  }
-  subgraph VPN {
-    vpn; pt; exit;
-  }
 
 }