This commit is contained in:
JustArchi
2016-11-24 07:49:44 +01:00
parent 137a53ef89
commit b7f15daa91
7 changed files with 17 additions and 16 deletions

View File

@@ -69,7 +69,7 @@ namespace ArchiSteamFarm {
ServicePointManager.DefaultConnectionLimit = MaxConnections;
// Set max idle time from default of 100 seconds (100 * 1000) to desired value
ServicePointManager.MaxServicePointIdleTime = MaxIdleTime*1000;
ServicePointManager.MaxServicePointIdleTime = MaxIdleTime * 1000;
// Don't use Expect100Continue, we're sure about our POSTs, save some TCP packets
ServicePointManager.Expect100Continue = false;