Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

What protocols exist between client and server?

client exist protocols server
0
10 Posted

What protocols exist between client and server?

0
10

Multiverse utilizes TCP and UDP packets for communication between the servers and client. Our goal is to allow the game developer to decide what type of service they need based on the game they are creating. For example, if you are creating an FPS game, using TCP for all networking code would probably lead to disaster if your TCP window stalls at any point. Since UDP packets are connectionless, you don’t have to worry about OS/Kernel limits. For UDP “connections”, the game developer can make it non-reliable, reliable, or reliable and sequential. We implement reliability and sequential delivery using RDP, see Reliable Data Protocol RFC-908 and Version 2 of the Reliable Data Protocol (RDP) RFC-1151 for more details. We have modified it slightly to work over UDP.

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123