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.
19 lines
421 B
Plaintext
19 lines
421 B
Plaintext
# MSC Sequence Diagram Example: Template transaction
|
|
|
|
msc {
|
|
# Chart Options
|
|
arcgradient = "10";
|
|
|
|
# Entities
|
|
a [ label = "Client" ], b [ label = "Server" ];
|
|
|
|
# Message Flow
|
|
a =>> b [ label = "Request ('12:HelloWorld!')" ];
|
|
b =>> a [ label = "Response ('3:Bye')" ];
|
|
|||;
|
|
--- [ label = "Transaction Completed" ];
|
|
|
|
|||;
|
|
||| [label="[ generated with Mscgen ]", textcolor="gray"];
|
|
}
|