From 81c8f05b52d7cfae845d5c83073e7e3666645e6e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 10 Feb 2026 22:42:53 +0000 Subject: [PATCH 1/2] Initial plan From 853bd39665d3b986041d86ae7c88a92f929e8ee6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 10 Feb 2026 22:48:12 +0000 Subject: [PATCH 2/2] Apply BufferSize to socket's ReceiveBufferSize property Co-authored-by: codegefluester <203914+codegefluester@users.noreply.github.com> --- GamesDat/Telemetry/Sources/UdpSourceBase.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/GamesDat/Telemetry/Sources/UdpSourceBase.cs b/GamesDat/Telemetry/Sources/UdpSourceBase.cs index b032040..3fc77be 100644 --- a/GamesDat/Telemetry/Sources/UdpSourceBase.cs +++ b/GamesDat/Telemetry/Sources/UdpSourceBase.cs @@ -24,6 +24,7 @@ public UdpSourceBase(UdpSourceOptions options) : base() _endpoint = new IPEndPoint(IPAddress.Any, Port); _listener = new UdpClient(_endpoint); + _listener.Client.ReceiveBufferSize = BufferSize; } public override async IAsyncEnumerable ReadContinuousAsync([EnumeratorCancellation] CancellationToken ct = default)