diff --git a/LibreMetaverse/DownloadManager.cs b/LibreMetaverse/DownloadManager.cs index bdc76b06..806fc54d 100644 --- a/LibreMetaverse/DownloadManager.cs +++ b/LibreMetaverse/DownloadManager.cs @@ -130,7 +130,7 @@ protected virtual HttpWebRequest SetupRequest(Uri address, string acceptHeader) request.ClientCertificates.Add(ClientCert); // Leave idle connections to this endpoint open for up to 60 seconds - request.ServicePoint.MaxIdleTime = 0; + request.ServicePoint.MaxIdleTime = 1000 * 60; // Disable stupid Expect-100: Continue header request.ServicePoint.Expect100Continue = false; // Crank up the max number of connections per endpoint