Skip to content

Commit 65cec9f

Browse files
Update README.md
Signed-off-by: Glenn Fiedler <[email protected]>
1 parent 43f2d1b commit 65cec9f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@
1010

1111
Real-time multiplayer games typically use UDP instead of TCP, because head of line blocking delays more recent packets while waiting for older dropped packets to be resent. The problem is that if you want to use UDP, it doesn't provide any concept of connection, so you have to build all this yourself, managing client sessions and timeouts yourself, which is a lot of work!
1212

13-
**netcode** fixes this by providing a minimal and secure connection-oriented protocol on top of UDP, so you can quickly get to exchanging unreliable unordered packets for your game and get busy building the rest of your game network protocol on top of the basic client/server connection structure that netcode provides.
14-
15-
So if you're thinking of building your own game network protocol from scratch, netcode can be a really good starting point and save you a lot of time.
13+
**netcode** fixes this by providing a minimal and secure connection-oriented protocol on top of UDP, so you can quickly get to exchanging unreliable unordered packets for your game and get busy building the rest of your game network protocol.
1614

1715
# Features
1816

0 commit comments

Comments
 (0)