aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Capabilities/Caps.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Capabilities/Caps.cs')
-rw-r--r--OpenSim/Region/Capabilities/Caps.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/OpenSim/Region/Capabilities/Caps.cs b/OpenSim/Region/Capabilities/Caps.cs
index d9d6f51..4a283b2 100644
--- a/OpenSim/Region/Capabilities/Caps.cs
+++ b/OpenSim/Region/Capabilities/Caps.cs
@@ -75,6 +75,7 @@ namespace OpenSim.Region.Capabilities
75 httpListener.AddRestHandler("POST", "/CAPS/" + capsObjectPath + mapLayerPath, MapLayer); 75 httpListener.AddRestHandler("POST", "/CAPS/" + capsObjectPath + mapLayerPath, MapLayer);
76 httpListener.AddRestHandler("POST", "/CAPS/" + capsObjectPath + newInventory, NewAgentInventory); 76 httpListener.AddRestHandler("POST", "/CAPS/" + capsObjectPath + newInventory, NewAgentInventory);
77 httpListener.AddRestHandler("POST", "/CAPS/" + capsObjectPath + eventQueue, ProcessEventQueue); 77 httpListener.AddRestHandler("POST", "/CAPS/" + capsObjectPath + eventQueue, ProcessEventQueue);
78 httpListener.AddRestHandler("POST", "/CAPS/" + capsObjectPath + requestTexture, RequestTexture);
78 } 79 }
79 80
80 /// <summary> 81 /// <summary>
@@ -131,6 +132,19 @@ namespace OpenSim.Region.Capabilities
131 /// <summary> 132 /// <summary>
132 /// 133 ///
133 /// </summary> 134 /// </summary>
135 /// <param name="request"></param>
136 /// <param name="path"></param>
137 /// <param name="param"></param>
138 /// <returns></returns>
139 public string RequestTexture(string request, string path, string param)
140 {
141 // Needs implementing (added to remove compiler warning)
142 return "";
143 }
144
145 /// <summary>
146 ///
147 /// </summary>
134 /// <returns></returns> 148 /// <returns></returns>
135 protected LLSDMapLayer BuildLLSDMapLayerResponse() 149 protected LLSDMapLayer BuildLLSDMapLayerResponse()
136 { 150 {