master-thesis/doc/graphviz/icmp6ndp.dot

20 lines
458 B
Plaintext
Raw Normal View History

2019-08-14 14:18:27 +00:00
digraph G {
node [ shape="box"];
2019-08-18 21:58:10 +00:00
rankdir="LR";
2019-08-14 14:18:27 +00:00
ipv6 [ label="IPv6" ]
icmp6 [ label="ICMP6" ]
icmp6ns [ label="ICMP6 Neigbor Advertisement" ]
2019-08-18 21:58:10 +00:00
icmp6nsll [ label="ICMP6 Link layer option" ]
icmp6other [ label="Option field 1" ]
icmp6other2 [ label="Option field 2" ]
icmp6othern [ label="Option field n" ]
ipv6->icmp6->icmp6ns->icmp6nsll->icmp6other->icmp6other2;
2019-08-14 14:18:27 +00:00
2019-08-18 21:58:10 +00:00
icmp6other2->icmp6othern [ style="dotted" ];
2019-08-14 14:18:27 +00:00
}