diff options
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/IHttpRequests.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/IHttpRequests.cs b/OpenSim/Region/Environment/Interfaces/IHttpRequests.cs index 0357139..c974616 100644 --- a/OpenSim/Region/Environment/Interfaces/IHttpRequests.cs +++ b/OpenSim/Region/Environment/Interfaces/IHttpRequests.cs | |||
@@ -27,11 +27,16 @@ | |||
27 | */ | 27 | */ |
28 | 28 | ||
29 | using libsecondlife; | 29 | using libsecondlife; |
30 | using OpenSim.Region.Environment.Modules; | ||
31 | using System.Collections.Generic; | ||
30 | 32 | ||
31 | namespace OpenSim.Region.Environment.Interfaces | 33 | namespace OpenSim.Region.Environment.Interfaces |
32 | { | 34 | { |
33 | public interface IHttpRequests | 35 | public interface IHttpRequests |
34 | { | 36 | { |
35 | LLUUID MakeHttpRequest(string url, string type, string body); | 37 | LLUUID MakeHttpRequest(string url, string parameters, string body); |
38 | LLUUID StartHttpRequest(uint localID, LLUUID itemID, string url, List<string> parameters, string body); | ||
39 | void StopHttpRequest(uint m_localID, LLUUID m_itemID); | ||
40 | HttpRequestClass GetNextCompletedRequest(); | ||
36 | } | 41 | } |
37 | } \ No newline at end of file | 42 | } \ No newline at end of file |