From 54731cd680b8ae7187058bf2a974fd1a17253250 Mon Sep 17 00:00:00 2001 From: Rae McKelvey <633012+okdistribute@users.noreply.github.com> Date: Tue, 21 Apr 2026 20:10:45 -0700 Subject: [PATCH] fix iroh page --- what-is-iroh.mdx | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/what-is-iroh.mdx b/what-is-iroh.mdx index 89d9547..b7910b9 100644 --- a/what-is-iroh.mdx +++ b/what-is-iroh.mdx @@ -36,20 +36,20 @@ iroh's communication protocols. An iroh application is a stack of small layers, each with one job: -``` -┌─────────────────────────────────────────────────┐ -│ Your application │ -├─────────────────────────────────────────────────┤ -│ Protocols blobs · docs · gossip · yours │ -├─────────────────────────────────────────────────┤ -│ Router dispatches connections by ALPN │ -├─────────────────────────────────────────────────┤ -│ Endpoint identity · discovery · NAT · relay │ -├─────────────────────────────────────────────────┤ -│ QUIC + TLS 1.3 │ -├─────────────────────────────────────────────────┤ -│ Transport UDP (default) · Tor · Nym · BLE │ -└─────────────────────────────────────────────────┘ +```mermaid +flowchart TB + app["Your application"] + protocols["Protocols
blobs, docs, gossip, yours"] + router["Router
dispatches connections by ALPN"] + endpoint["Endpoint
identity, discovery, NAT, relay"] + quic["QUIC + TLS 1.3"] + transport["Transport
UDP default, Tor, Nym, BLE"] + + app --- protocols + protocols --- router + router --- endpoint + endpoint --- quic + quic --- transport ``` - **Transport** carries encrypted bytes between machines. UDP is the default;