From 6e456bcee2270dc45bcd30e187992a66afacbace Mon Sep 17 00:00:00 2001 From: juanjp600 Date: Thu, 25 Aug 2016 18:40:59 -0300 Subject: [PATCH] Disable reliable sender I'll be replacing reliability with redundancy; basically, instead of requiring acks for reliable packets, both the client and server will stack and send several previous states redundantly. This has several benefits, such as allowing the frequency at which packets are sent to be greatly reduced (at the cost of larger packets, but that's a non-issue really, the overhead of many tiny packets is probably worse), and it makes implementing the authoritative server a lot easier. The reliable sender will probably be needed later to make clients able to download subs again, but for now it's not important. --- Subsurface/Source/Networking/{ => disabled}/ReliableSender.cs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Subsurface/Source/Networking/{ => disabled}/ReliableSender.cs (100%) diff --git a/Subsurface/Source/Networking/ReliableSender.cs b/Subsurface/Source/Networking/disabled/ReliableSender.cs similarity index 100% rename from Subsurface/Source/Networking/ReliableSender.cs rename to Subsurface/Source/Networking/disabled/ReliableSender.cs