mirror of https://github.com/OISF/suricata
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
377 B
Plaintext
17 lines
377 B
Plaintext
# MSC Sequence Diagram Example: DNS Query Transaction
|
|
|
|
msc {
|
|
# Chart Options
|
|
arcgradient = "10";
|
|
|
|
# Entities
|
|
a [ label = "Client" ], b [ label = "Server" ];
|
|
|
|
# Message Flow
|
|
a =>> b [ label = "DNS Request" ];
|
|
--- [ label = "Transaction 1 Completed" ];
|
|
|||;
|
|
b =>> a [ label = "DNS Response" ];
|
|
--- [ label = "Transaction 2 Completed" ];
|
|
}
|