Convert TCP networking to sync and binary, add DHCP and IP stack init on boot

This commit is contained in:
Stone_Red
2026-06-18 23:54:23 +02:00
parent 79bc87f5c7
commit ba5d670d1a
8 changed files with 345 additions and 143 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ public sealed class NetworkRenderSource(TcpRpcServer server) : IRenderSource
foreach (RenderCommand cmd in commands)
{
byte[] data = cmd.ToBytes();
_ = server.SendRawToAll(MessageType, data);
server.SendRawToAll(MessageType, data);
}
}