aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/OSHttpXmlRpcHandler.cs
diff options
context:
space:
mode:
authorDr Scofield2008-10-06 19:42:03 +0000
committerDr Scofield2008-10-06 19:42:03 +0000
commita1f34090326d6d567aecb2052ec4ba0b6c4f52e2 (patch)
treeecb16e81c39802184fefc72dad585b0976dba8d3 /OpenSim/Framework/Servers/OSHttpXmlRpcHandler.cs
parent* Made Mapitems more failure friendly (diff)
downloadopensim-SC_OLD-a1f34090326d6d567aecb2052ec4ba0b6c4f52e2.zip
opensim-SC_OLD-a1f34090326d6d567aecb2052ec4ba0b6c4f52e2.tar.gz
opensim-SC_OLD-a1f34090326d6d567aecb2052ec4ba0b6c4f52e2.tar.bz2
opensim-SC_OLD-a1f34090326d6d567aecb2052ec4ba0b6c4f52e2.tar.xz
cleaning up OSHttpRequest removing old Http stuff. also adding test
case for OSHttpRequest (not very fancy yet, but still).
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Servers/OSHttpXmlRpcHandler.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenSim/Framework/Servers/OSHttpXmlRpcHandler.cs b/OpenSim/Framework/Servers/OSHttpXmlRpcHandler.cs
index 996e5dc..5a3d485 100644
--- a/OpenSim/Framework/Servers/OSHttpXmlRpcHandler.cs
+++ b/OpenSim/Framework/Servers/OSHttpXmlRpcHandler.cs
@@ -45,9 +45,10 @@ namespace OpenSim.Framework.Servers
45 private static readonly ILog _log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); 45 private static readonly ILog _log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
46 46
47 /// <summary> 47 /// <summary>
48 /// An OSHttpHandler that matches on the "content-type" header can 48 /// XmlRpcMethodMatch tries to reify (deserialize) an incoming
49 /// supply an OSHttpContentTypeChecker delegate which will be 49 /// XmlRpc request (and posts it to the "whiteboard") and
50 /// invoked by the request matcher in OSHttpRequestPump. 50 /// checks whether the method name is one we are interested
51 /// in.
51 /// </summary> 52 /// </summary>
52 /// <returns>true if the handler is interested in the content; 53 /// <returns>true if the handler is interested in the content;
53 /// false otherwise</returns> 54 /// false otherwise</returns>