Files
simplex-chat/diagrams/simplex-messaging/simplex.mmd
Evgeny Poberezkin 3e07161121 Remove connection ID and alternative flow (#22)
* docs: remove connection ID from simplex-messaging.md, #8

* docs: remove alternative flow in simplex-messaging, #20

* docs: update simplex diagrams to remove connection ID

* docs: remove connection ID from graph-chat

* docs: update duplex connection diagram to remove connection ID, closes #8
2020-01-26 21:34:14 +00:00

11 lines
230 B
Plaintext

graph LR
VS{{"verify sender (SK)"}}
VR{{"verify recipient (RK)"}}
S(sender) -->|msg| VS
subgraph "server (connection RU)"
VS --> DB[("storage")]
DB --> VR
end
R(recipient) -->|"1) req"| VR
VR -->|"2) msg"| R