aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/TRPC_Remote.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common/TRPC_Remote.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/TRPC_Remote.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/TRPC_Remote.cs b/OpenSim/Region/ScriptEngine/Common/TRPC_Remote.cs
index b6c2e93..10abc35 100644
--- a/OpenSim/Region/ScriptEngine/Common/TRPC_Remote.cs
+++ b/OpenSim/Region/ScriptEngine/Common/TRPC_Remote.cs
@@ -2,6 +2,7 @@
2using System.Collections.Generic; 2using System.Collections.Generic;
3using System.Diagnostics; 3using System.Diagnostics;
4using System.Text; 4using System.Text;
5using libsecondlife;
5using OpenSim.Region.ScriptEngine.Common.TRPC; 6using OpenSim.Region.ScriptEngine.Common.TRPC;
6 7
7namespace OpenSim.Region.ScriptEngine.Common 8namespace OpenSim.Region.ScriptEngine.Common
@@ -22,7 +23,11 @@ namespace OpenSim.Region.ScriptEngine.Common
22 typeof(System.Int64), 23 typeof(System.Int64),
23 typeof(System.Double), 24 typeof(System.Double),
24 typeof(System.Decimal), 25 typeof(System.Decimal),
25 typeof(System.Array) 26 typeof(System.Array),
27 typeof(LLUUID),
28 typeof(System.UInt16),
29 typeof(System.UInt32),
30 typeof(System.UInt64)
26 }; 31 };
27 32
28 // TODO: Maybe we should move queue into TCPSocket so we won't have to keep one queue instance per connection 33 // TODO: Maybe we should move queue into TCPSocket so we won't have to keep one queue instance per connection