Compare commits

..

No commits in common. "705e322e41ca1f2f97ac90f2b619dbe456c2c361" and "89cc2291c00c3166bfc4c3f809d639301d39cac3" have entirely different histories.

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 >= 256 - batchSize) if (outstanding >= 512 - batchSize)
continue; continue;