diff options
author | UbitUmarov | 2019-02-24 07:25:50 +0000 |
---|---|---|
committer | UbitUmarov | 2019-02-24 07:25:50 +0000 |
commit | 800f6d6529516be22d4ee79cd8e9161479f4df34 (patch) | |
tree | a489698150d5f0f80731fa9a29f50e14b9945965 /OpenSim/Region/Framework | |
parent | update script sintaxe (diff) | |
download | opensim-SC-800f6d6529516be22d4ee79cd8e9161479f4df34.zip opensim-SC-800f6d6529516be22d4ee79cd8e9161479f4df34.tar.gz opensim-SC-800f6d6529516be22d4ee79cd8e9161479f4df34.tar.bz2 opensim-SC-800f6d6529516be22d4ee79cd8e9161479f4df34.tar.xz |
several changes to llHttpRequest processing: options section renamed ScriptsHttpRequestModule; throttle by prim (PrimRequestsBurst = 3, PrimRequestsPerSec = 1) and max concurrent connections per instance (MaxPoolThreads = 5), llhttprequest returns if error, nullkey if throttled, reqid otherwise
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IHttpRequests.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IHttpRequests.cs b/OpenSim/Region/Framework/Interfaces/IHttpRequests.cs index 978c248..3ab1f6c 100644 --- a/OpenSim/Region/Framework/Interfaces/IHttpRequests.cs +++ b/OpenSim/Region/Framework/Interfaces/IHttpRequests.cs | |||
@@ -87,5 +87,6 @@ namespace OpenSim.Region.Framework.Interfaces | |||
87 | void StopHttpRequest(uint m_localID, UUID m_itemID); | 87 | void StopHttpRequest(uint m_localID, UUID m_itemID); |
88 | IServiceRequest GetNextCompletedRequest(); | 88 | IServiceRequest GetNextCompletedRequest(); |
89 | void RemoveCompletedRequest(UUID id); | 89 | void RemoveCompletedRequest(UUID id); |
90 | bool CheckThrottle(uint localID); | ||
90 | } | 91 | } |
91 | } | 92 | } |