diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/WebUtil.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Framework/WebUtil.cs b/OpenSim/Framework/WebUtil.cs index 70fab77..2a309a7 100644 --- a/OpenSim/Framework/WebUtil.cs +++ b/OpenSim/Framework/WebUtil.cs | |||
@@ -1116,6 +1116,8 @@ namespace OpenSim.Framework | |||
1116 | 1116 | ||
1117 | WebRequest request = WebRequest.Create(requestUrl); | 1117 | WebRequest request = WebRequest.Create(requestUrl); |
1118 | HttpWebRequest ht = (HttpWebRequest)request; | 1118 | HttpWebRequest ht = (HttpWebRequest)request; |
1119 | ht.Timeout = pTimeout; | ||
1120 | |||
1119 | if (maxConnections > 0 && ht.ServicePoint.ConnectionLimit < maxConnections) | 1121 | if (maxConnections > 0 && ht.ServicePoint.ConnectionLimit < maxConnections) |
1120 | ht.ServicePoint.ConnectionLimit = maxConnections; | 1122 | ht.ServicePoint.ConnectionLimit = maxConnections; |
1121 | 1123 | ||