mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-04-26 13:08:02 +00:00
* 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
11 lines
230 B
Plaintext
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 |