Skip to content

Commit

Permalink
Update tcp.rst
Browse files Browse the repository at this point in the history
Fixes #137
  • Loading branch information
obonaventure authored Mar 29, 2024
1 parent e380c87 commit be29a78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion protocols/tcp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ An elegant solution to this problem was proposed by John Nagle in :rfc:`896`. Jo
if there are unacknowledged data:
place data in buffer until acknowledgment has been received
else:
send one TCP segment containing all buffered data
send one TCP segment containing all buffered data (up to rcv.wnd)
The first rule ensures that a TCP connection used for bulk data transfer always sends full TCP segments. The second rule sends one partially filled TCP segment every round-trip-time.

Expand Down

0 comments on commit be29a78

Please sign in to comment.