set Expect100Continue false again

This commit is contained in:
UbitUmarov
2021-05-29 23:19:40 +01:00
parent ee530d438f
commit 4e8c87fbd1
2 changed files with 2 additions and 2 deletions

View File

@@ -80,7 +80,7 @@ namespace OpenSim
ServicePointManager.MaxServicePointIdleTime = 30000;
try { ServicePointManager.DnsRefreshTimeout = 5000; } catch { }
ServicePointManager.Expect100Continue = true; // needed now to suport auto redir without writecache
ServicePointManager.Expect100Continue = false;
ServicePointManager.UseNagleAlgorithm = false;
// Add the arguments supplied when running the application to the configuration

View File

@@ -81,7 +81,7 @@ namespace OpenSim.Server
ServicePointManager.DefaultConnectionLimit = 64;
ServicePointManager.MaxServicePointIdleTime = 30000;
ServicePointManager.Expect100Continue = true; // needed now to suport auto redir without writecache
ServicePointManager.Expect100Continue = false;
ServicePointManager.UseNagleAlgorithm = false;
ServicePointManager.ServerCertificateValidationCallback = ValidateServerCertificate;