diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common/TRPC_Remote.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/TRPC_Remote.cs | 7 |
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 @@ | |||
2 | using System.Collections.Generic; | 2 | using System.Collections.Generic; |
3 | using System.Diagnostics; | 3 | using System.Diagnostics; |
4 | using System.Text; | 4 | using System.Text; |
5 | using libsecondlife; | ||
5 | using OpenSim.Region.ScriptEngine.Common.TRPC; | 6 | using OpenSim.Region.ScriptEngine.Common.TRPC; |
6 | 7 | ||
7 | namespace OpenSim.Region.ScriptEngine.Common | 8 | namespace 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 |