ovsdb: Implement garbage collection.
[sliver-openvswitch.git] / vswitchd / vswitch.gv
1 digraph Open_vSwitch {
2         size="6.5,4";
3         margin="0";
4         node [shape=box];
5         edge [dir=none, arrowhead=none, arrowtail=none];
6         Bridge [style=bold];
7         Bridge -> sFlow [label="sflow"];
8         Bridge -> Mirror [label="mirrors"];
9         Bridge -> Port [label="ports"];
10         Bridge -> Controller [label="controller"];
11         Bridge -> NetFlow [label="netflow"];
12         QoS [style=bold];
13         QoS -> Queue [label="queues value"];
14         Monitor [style=bold];
15         Monitor -> Maintenance_Point [label="remote_mps"];
16         sFlow [style=bold];
17         Open_vSwitch [style=bold];
18         Open_vSwitch -> Bridge [label="bridges"];
19         Open_vSwitch -> Capability [label="capabilities value"];
20         Open_vSwitch -> SSL [label="ssl"];
21         Open_vSwitch -> Manager [label="manager_options"];
22         Controller [style=bold];
23         Queue [style=bold];
24         SSL [style=bold];
25         Manager [style=bold];
26         Capability [style=bold];
27         Mirror [style=bold];
28         Mirror -> Port [style=dotted, constraint=false, label="select_src_port"];
29         Mirror -> Port [style=dotted, constraint=false, label="output_port"];
30         Mirror -> Port [style=dotted, constraint=false, label="select_dst_port"];
31         Interface [style=bold];
32         Interface -> Monitor [label="monitor"];
33         NetFlow [style=bold];
34         Maintenance_Point [style=bold];
35         Port [style=bold];
36         Port -> QoS [label="qos"];
37         Port -> Interface [label="interfaces"];
38 }