aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
diff options
context:
space:
mode:
authordr scofield (aka dirk husemann)2009-12-23 18:33:54 +0100
committerdr scofield (aka dirk husemann)2009-12-23 18:33:54 +0100
commit9c294c566313c4d2a97d519b9efd08c7ca0f43db (patch)
treed0eeb02cafa9230b07d7fb72756ea4e7fcd0d9b3 /OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
parentAdded Close() to Inventory/Archiver/InventoryArchiveReadRequest, so that the ... (diff)
downloadopensim-SC_OLD-9c294c566313c4d2a97d519b9efd08c7ca0f43db.zip
opensim-SC_OLD-9c294c566313c4d2a97d519b9efd08c7ca0f43db.tar.gz
opensim-SC_OLD-9c294c566313c4d2a97d519b9efd08c7ca0f43db.tar.bz2
opensim-SC_OLD-9c294c566313c4d2a97d519b9efd08c7ca0f43db.tar.xz
- commented out unused method ConvertIHttpClientContextToOSHttp
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs14
1 files changed, 7 insertions, 7 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
index 08f1bec..857c584 100644
--- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
+++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
@@ -322,15 +322,15 @@ namespace OpenSim.Framework.Servers.HttpServer
322 HandleRequest(req, resp); 322 HandleRequest(req, resp);
323 } 323 }
324 324
325 public void ConvertIHttpClientContextToOSHttp(object stateinfo) 325 // public void ConvertIHttpClientContextToOSHttp(object stateinfo)
326 { 326 // {
327 HttpServerContextObj objstate = (HttpServerContextObj)stateinfo; 327 // HttpServerContextObj objstate = (HttpServerContextObj)stateinfo;
328 328
329 OSHttpRequest request = objstate.oreq; 329 // OSHttpRequest request = objstate.oreq;
330 OSHttpResponse resp = objstate.oresp; 330 // OSHttpResponse resp = objstate.oresp;
331 331
332 HandleRequest(request,resp); 332 // HandleRequest(request,resp);
333 } 333 // }
334 334
335 public virtual void HandleRequest(OSHttpRequest request, OSHttpResponse response) 335 public virtual void HandleRequest(OSHttpRequest request, OSHttpResponse response)
336 { 336 {