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
413 B
Plaintext
19 lines
413 B
Plaintext
# MSC Sequence Diagram for an HTTP2 Transaction, which is bidirectional in Suricata
|
|
|
|
msc {
|
|
|
|
# Chart options
|
|
arcgradient = "10";
|
|
|
|
# Entities
|
|
a [ label = "Client" ], b [ label = "Server" ];
|
|
|
|
# Message flow
|
|
a =>> b [ label = "Request" ];
|
|
b =>> a [ label = "Response" ];
|
|
|||;
|
|
--- [ label = "Transaction Completed" ];
|
|
}
|
|
|
|
# Reference: https://tools.ietf.org/html/rfc7540#section-8.1
|