From 7be73c2b9d5c9267987c1f8134248080bbaecced Mon Sep 17 00:00:00 2001 From: Bin Wang Date: Sun, 8 Sep 2024 22:42:58 +0800 Subject: [PATCH] Fix typo --- Beginners.md | 2 +- .../{tcp_state_machine.md => tcp_state_machine.png} | Bin 2 files changed, 1 insertion(+), 1 deletion(-) rename images/{tcp_state_machine.md => tcp_state_machine.png} (100%) diff --git a/Beginners.md b/Beginners.md index 3bd7bcb3..89951066 100644 --- a/Beginners.md +++ b/Beginners.md @@ -220,7 +220,7 @@ We know that the TCP protocol is stateful. Although the packet sending mechanism As a result, *tcpcopy* implements a simulated TCP state machine, representing the most complex and challenging aspect of its codebase. The relevant code, located in `tcpcopy/src/tcpcopy/tc_session.c`, handles crucial tasks such as simulating TCP interactions, managing network latency, and emulating upper-layer interactions. -![](images/tcp_state_machine.md) +![](images/tcp_state_machine.png) Figure 2. Classic TCP state machine overview. diff --git a/images/tcp_state_machine.md b/images/tcp_state_machine.png similarity index 100% rename from images/tcp_state_machine.md rename to images/tcp_state_machine.png