Compare commits

...

2 Commits

Author SHA1 Message Date
alivender 705e322e41 Merge branch 'master' of ssh://git.swordlost.top:222/SikongJueluo/FPGA_WebLab 2025-07-14 17:28:01 +08:00
alivender 0f3754ce99 fix: UDPPools限制最大队列256 2025-07-14 17:27:59 +08:00
1 changed files with 1 additions and 1 deletions

View File

@ -477,7 +477,7 @@ public class UDPClientPool
int outstanding = sentCount - (found.HasValue ? found.Value : 0); int outstanding = sentCount - (found.HasValue ? found.Value : 0);
// If outstanding >= 512 - batchSize, wait for some data to be received // If outstanding >= 512 - batchSize, wait for some data to be received
if (outstanding >= 512 - batchSize) if (outstanding >= 256 - batchSize)
continue; continue;