aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Interfaces/IHttpRequests.cs
diff options
context:
space:
mode:
authorMW2007-09-04 17:53:21 +0000
committerMW2007-09-04 17:53:21 +0000
commit710856e3d34837eaba90f9fae893e6a59758802f (patch)
treeeed7d07f87ce80e7d55098e295cc86dca2cf8d0b /OpenSim/Region/Environment/Interfaces/IHttpRequests.cs
parentAdded "show modules" command that if at root level will display a list of loa... (diff)
downloadopensim-SC_OLD-710856e3d34837eaba90f9fae893e6a59758802f.zip
opensim-SC_OLD-710856e3d34837eaba90f9fae893e6a59758802f.tar.gz
opensim-SC_OLD-710856e3d34837eaba90f9fae893e6a59758802f.tar.bz2
opensim-SC_OLD-710856e3d34837eaba90f9fae893e6a59758802f.tar.xz
Removed the exit-region command, now use "change-region root" or "change-region .." to change back to root level. [Would be nice if the command prompt changed to show what the current region was, but think that will need changes to the console code so for now it will have to stay as it is].
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Interfaces/IHttpRequests.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/IHttpRequests.cs b/OpenSim/Region/Environment/Interfaces/IHttpRequests.cs
new file mode 100644
index 0000000..2294631
--- /dev/null
+++ b/OpenSim/Region/Environment/Interfaces/IHttpRequests.cs
@@ -0,0 +1,12 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using libsecondlife;
5
6namespace OpenSim.Region.Environment.Interfaces
7{
8 public interface IHttpRequests
9 {
10 LLUUID MakeHttpRequest(string url, string type, string body);
11 }
12}