From 476d49c27dfdb789b39898fb6e0b25f287f932a4 Mon Sep 17 00:00:00 2001 From: Erik Grinaker Date: Thu, 14 May 2020 17:31:52 +0200 Subject: [PATCH] docs: move tcp-window.png to imgs/ Possibly fixes #4842. I'm not familiar with the doc generation pipeline, but other images under `imgs/` seem to work so just cargo-culting it. --- docs/{introduction => imgs}/tcp-window.png | Bin docs/introduction/architecture.md | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename docs/{introduction => imgs}/tcp-window.png (100%) diff --git a/docs/introduction/tcp-window.png b/docs/imgs/tcp-window.png similarity index 100% rename from docs/introduction/tcp-window.png rename to docs/imgs/tcp-window.png diff --git a/docs/introduction/architecture.md b/docs/introduction/architecture.md index 066814f23..a87db8386 100644 --- a/docs/introduction/architecture.md +++ b/docs/introduction/architecture.md @@ -47,7 +47,7 @@ Here are some relevant facts about TCP: 3. The syn/ack process also means that there's a high overhead for small, frequent messages 4. Sockets are represented by file descriptors. -![tcp-window](tcp-window.png) +![](../imgs/tcp-window.png) In order to have performant TCP connections under the conditions created in Tendermint, we've created the `mconnection`, or the multiplexing connection. It is our own protocol built on top of TCP. It lets us reuse TCP connections to minimize overhead, and it keeps the window size high by sending auxiliary messages when necessary.