diff options
author | onefang | 2019-05-19 21:24:15 +1000 |
---|---|---|
committer | onefang | 2019-05-19 21:24:15 +1000 |
commit | 5e4d6cab00cb29cd088ab7b62ab13aff103b64cb (patch) | |
tree | a9fbc62df9eb2d1d9ba2698d8552eae71eca20d8 /OpenSim/Region/Framework/Interfaces/IHttpRequests.cs | |
parent | Add a build script. (diff) | |
download | opensim-SC-5e4d6cab00cb29cd088ab7b62ab13aff103b64cb.zip opensim-SC-5e4d6cab00cb29cd088ab7b62ab13aff103b64cb.tar.gz opensim-SC-5e4d6cab00cb29cd088ab7b62ab13aff103b64cb.tar.bz2 opensim-SC-5e4d6cab00cb29cd088ab7b62ab13aff103b64cb.tar.xz |
Dump OpenSim 0.9.0.1 into it's own branch.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IHttpRequests.cs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IHttpRequests.cs b/OpenSim/Region/Framework/Interfaces/IHttpRequests.cs index 124504c..978c248 100644 --- a/OpenSim/Region/Framework/Interfaces/IHttpRequests.cs +++ b/OpenSim/Region/Framework/Interfaces/IHttpRequests.cs | |||
@@ -58,7 +58,6 @@ namespace OpenSim.Region.Framework.Interfaces | |||
58 | public interface IHttpRequestModule | 58 | public interface IHttpRequestModule |
59 | { | 59 | { |
60 | UUID MakeHttpRequest(string url, string parameters, string body); | 60 | UUID MakeHttpRequest(string url, string parameters, string body); |
61 | |||
62 | /// <summary> | 61 | /// <summary> |
63 | /// Starts the http request. | 62 | /// Starts the http request. |
64 | /// </summary> | 63 | /// </summary> |
@@ -78,15 +77,14 @@ namespace OpenSim.Region.Framework.Interfaces | |||
78 | /// then returned via IServiceRequest when the response is asynchronously fetched. | 77 | /// then returned via IServiceRequest when the response is asynchronously fetched. |
79 | /// </param> | 78 | /// </param> |
80 | UUID StartHttpRequest( | 79 | UUID StartHttpRequest( |
81 | uint localID, UUID itemID, string url, List<string> parameters, Dictionary<string, string> headers, string body, | 80 | uint localID, UUID itemID, string url, List<string> parameters, Dictionary<string, string> headers, string body, |
82 | out HttpInitialRequestStatus status); | 81 | out HttpInitialRequestStatus status); |
83 | 82 | ||
84 | /// <summary> | 83 | /// <summary> |
85 | /// Stop and remove all http requests for the given script. | 84 | /// Stop and remove all http requests for the given script. |
86 | /// </summary> | 85 | /// </summary> |
87 | /// <param name='id'></param> | 86 | /// <param name='id'></param> |
88 | void StopHttpRequestsForScript(UUID id); | 87 | void StopHttpRequest(uint m_localID, UUID m_itemID); |
89 | |||
90 | IServiceRequest GetNextCompletedRequest(); | 88 | IServiceRequest GetNextCompletedRequest(); |
91 | void RemoveCompletedRequest(UUID id); | 89 | void RemoveCompletedRequest(UUID id); |
92 | } | 90 | } |