aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Handlers
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-03-22 22:17:07 +0000
committerJustin Clark-Casey (justincc)2012-03-22 23:02:35 +0000
commit3c13f5c3aae3d70f1e8dd3ccdee70baaeb79f0f8 (patch)
tree619a06b57a1a9c88c7236cfca7ef353fbad9a768 /OpenSim/Server/Handlers
parentAdd prim name to "[MESH]: No recognized physics mesh..." log message (diff)
downloadopensim-SC_OLD-3c13f5c3aae3d70f1e8dd3ccdee70baaeb79f0f8.zip
opensim-SC_OLD-3c13f5c3aae3d70f1e8dd3ccdee70baaeb79f0f8.tar.gz
opensim-SC_OLD-3c13f5c3aae3d70f1e8dd3ccdee70baaeb79f0f8.tar.bz2
opensim-SC_OLD-3c13f5c3aae3d70f1e8dd3ccdee70baaeb79f0f8.tar.xz
Add llGiveInventory() test from object to object where both objects are owned by the same user.
Diffstat (limited to 'OpenSim/Server/Handlers')
-rw-r--r--OpenSim/Server/Handlers/Login/LLLoginHandlers.cs12
-rw-r--r--OpenSim/Server/Handlers/Login/LLLoginServiceInConnector.cs1
2 files changed, 12 insertions, 1 deletions
diff --git a/OpenSim/Server/Handlers/Login/LLLoginHandlers.cs b/OpenSim/Server/Handlers/Login/LLLoginHandlers.cs
index 8048f86..ed62f95 100644
--- a/OpenSim/Server/Handlers/Login/LLLoginHandlers.cs
+++ b/OpenSim/Server/Handlers/Login/LLLoginHandlers.cs
@@ -73,6 +73,18 @@ namespace OpenSim.Server.Handlers.Login
73 73
74 if (requestData != null) 74 if (requestData != null)
75 { 75 {
76 foreach (string key in requestData.Keys)
77 {
78 object value = requestData[key];
79 Console.WriteLine("{0}:{1}", key, value);
80 if (value is ArrayList)
81 {
82 ICollection col = value as ICollection;
83 foreach (object item in col)
84 Console.WriteLine(" {0}", item);
85 }
86 }
87
76 if (requestData.ContainsKey("first") && requestData["first"] != null && 88 if (requestData.ContainsKey("first") && requestData["first"] != null &&
77 requestData.ContainsKey("last") && requestData["last"] != null && ( 89 requestData.ContainsKey("last") && requestData["last"] != null && (
78 (requestData.ContainsKey("passwd") && requestData["passwd"] != null) || 90 (requestData.ContainsKey("passwd") && requestData["passwd"] != null) ||
diff --git a/OpenSim/Server/Handlers/Login/LLLoginServiceInConnector.cs b/OpenSim/Server/Handlers/Login/LLLoginServiceInConnector.cs
index 16c93c8..9a7ad34 100644
--- a/OpenSim/Server/Handlers/Login/LLLoginServiceInConnector.cs
+++ b/OpenSim/Server/Handlers/Login/LLLoginServiceInConnector.cs
@@ -94,6 +94,5 @@ namespace OpenSim.Server.Handlers.Login
94 server.AddXmlRPCHandler("set_login_level", loginHandlers.HandleXMLRPCSetLoginLevel, false); 94 server.AddXmlRPCHandler("set_login_level", loginHandlers.HandleXMLRPCSetLoginLevel, false);
95 server.SetDefaultLLSDHandler(loginHandlers.HandleLLSDLogin); 95 server.SetDefaultLLSDHandler(loginHandlers.HandleLLSDLogin);
96 } 96 }
97
98 } 97 }
99} 98}