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.
This commit is contained in:
Erik Grinaker
2020-05-14 17:31:52 +02:00
committed by GitHub
parent c0682a3bed
commit 476d49c27d
2 changed files with 1 additions and 1 deletions

View File

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 64 KiB

View File

@@ -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.