But my WiFi is just fine!

https://lemmy.dbzer0.com/post/4697958

But my WiFi is just fine! - Divisions by zero

Latency is the name of the game if you’re gaming. Copper will always give you the fastest ping times compared to the fastest wifi you can buy.
WiFi 5 latency is only two times higher than cooper (0.3ms vs 0.6ms). WiFi 6 has the same or even lower latency. WiFi 7 is even better. If latency is your game, copper is a poor choice. Unless you have spare money for an industrial 100Gbps set up. Which you don’t.

Please speak standards, not marketing language. Replace WiFi and number with 802.11 and letters in the end.

If latency is your game, copper is a poor choice

One packet drop for TCP creates huge latency for application level protocol. And not many games use UDP for their transport.

not many games use UDP for their transport

Citation Needed

I have never heard of a latency-sensitive game that doesn’t use UDP for inner loop communication. Sure they use TCP for login and server browser, but the actual communication for gameplay almost always uses UDP.

Let’s see… Terraria, Factorio, Minecraft.
Minecraft and Terraria use both TCP and UDP, presumably in the way I described (TCP for initial connection, asset download, etc. and UDP for world state sync). Factorio uses UDP exclusively, and implements reliable transport where needed in software.
Unless it’s changed in the past year which I doubt, Minecraft exclusively uses TCP for client/server communication. I’ve been modding the game for years and am pretty familiar with the protocol. I think it’s actually one of the few which don’t use UDP to some capacity.
The original PC Java client uses TCP; every other client, including the C++ PC version, uses UDP.
Ah okay, didn’t know that does it differently since I’ve never touched it. Makes me wonder why they used UDP for it but didn’t use it in the Java protocol yet.

Oops, Factorio moved to UDP.

Can’t find any UDP implementation or even UDP protocol description for Terraria, while there are implementations of Terraria protocol that use TCP and documentation for it.

Minecraft uses only TCP. Sources: wiki.vg, myself, myself and friend of mine and myself again(no link for now, but two minecraft proxy server implementations)

GitHub - uis246/MCPC_dissect: Minecraft PC wireshark dissector

Minecraft PC wireshark dissector. Contribute to uis246/MCPC_dissect development by creating an account on GitHub.

GitHub