diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim.Framework/Interfaces/IAssetServer.cs (renamed from OpenSim.Framework/IAssetServer.cs) | 2 | ||||
-rw-r--r-- | OpenSim.Framework/Interfaces/IConfig.cs (renamed from OpenSim.Framework/IConfig.cs) | 0 | ||||
-rw-r--r-- | OpenSim.Framework/Interfaces/IGenericConfig.cs (renamed from OpenSim.Framework/IGenericConfig.cs) | 0 | ||||
-rw-r--r-- | OpenSim.Framework/Interfaces/IGridConfig.cs (renamed from OpenSim.Framework/IGridConfig.cs) | 0 | ||||
-rw-r--r-- | OpenSim.Framework/Interfaces/IGridServer.cs (renamed from OpenSim.Framework/IGridServer.cs) | 5 | ||||
-rw-r--r-- | OpenSim.Framework/Interfaces/ILocalStorage.cs (renamed from OpenSim.Framework/ILocalStorage.cs) | 2 | ||||
-rw-r--r-- | OpenSim.Framework/Interfaces/IScriptAPI.cs (renamed from OpenSim.Framework/IScriptAPI.cs) | 1 | ||||
-rw-r--r-- | OpenSim.Framework/Interfaces/IScriptEngine.cs (renamed from OpenSim.Framework/IScriptEngine.cs) | 0 | ||||
-rw-r--r-- | OpenSim.Framework/Interfaces/IUserConfig.cs (renamed from OpenSim.Framework/IUserConfig.cs) | 0 | ||||
-rw-r--r-- | OpenSim.Framework/Interfaces/IUserServer.cs (renamed from OpenSim.Framework/IUserServer.cs) | 0 | ||||
-rw-r--r-- | OpenSim.Framework/Interfaces/LocalGridBase.cs (renamed from OpenSim.Framework/LocalGridBase.cs) | 1 | ||||
-rw-r--r-- | OpenSim.Framework/Interfaces/RemoteGridBase.cs (renamed from OpenSim.Framework/RemoteGridBase.cs) | 21 |
12 files changed, 18 insertions, 14 deletions
diff --git a/OpenSim.Framework/IAssetServer.cs b/OpenSim.Framework/Interfaces/IAssetServer.cs index a0de548..3f86acc 100644 --- a/OpenSim.Framework/IAssetServer.cs +++ b/OpenSim.Framework/Interfaces/IAssetServer.cs | |||
@@ -30,7 +30,7 @@ using System.Net.Sockets; | |||
30 | using System.IO; | 30 | using System.IO; |
31 | using System.Threading; | 31 | using System.Threading; |
32 | using libsecondlife; | 32 | using libsecondlife; |
33 | using OpenSim.Framework.Assets; | 33 | using OpenSim.Framework.Types; |
34 | 34 | ||
35 | namespace OpenSim.Framework.Interfaces | 35 | namespace OpenSim.Framework.Interfaces |
36 | { | 36 | { |
diff --git a/OpenSim.Framework/IConfig.cs b/OpenSim.Framework/Interfaces/IConfig.cs index 7b4c040..7b4c040 100644 --- a/OpenSim.Framework/IConfig.cs +++ b/OpenSim.Framework/Interfaces/IConfig.cs | |||
diff --git a/OpenSim.Framework/IGenericConfig.cs b/OpenSim.Framework/Interfaces/IGenericConfig.cs index a853fe4..a853fe4 100644 --- a/OpenSim.Framework/IGenericConfig.cs +++ b/OpenSim.Framework/Interfaces/IGenericConfig.cs | |||
diff --git a/OpenSim.Framework/IGridConfig.cs b/OpenSim.Framework/Interfaces/IGridConfig.cs index b2f26da..b2f26da 100644 --- a/OpenSim.Framework/IGridConfig.cs +++ b/OpenSim.Framework/Interfaces/IGridConfig.cs | |||
diff --git a/OpenSim.Framework/IGridServer.cs b/OpenSim.Framework/Interfaces/IGridServer.cs index 9c06a6b..b01f308 100644 --- a/OpenSim.Framework/IGridServer.cs +++ b/OpenSim.Framework/Interfaces/IGridServer.cs | |||
@@ -27,13 +27,14 @@ | |||
27 | 27 | ||
28 | 28 | ||
29 | using System; | 29 | using System; |
30 | using System.Collections; | 30 | using System.Collections; |
31 | using System.Collections.Generic; | 31 | using System.Collections.Generic; |
32 | using System.Net; | 32 | using System.Net; |
33 | using System.Net.Sockets; | 33 | using System.Net.Sockets; |
34 | using System.IO; | 34 | using System.IO; |
35 | using libsecondlife; | 35 | using libsecondlife; |
36 | using OpenSim; | 36 | using OpenSim; |
37 | using OpenSim.Framework.Types; | ||
37 | 38 | ||
38 | namespace OpenSim.Framework.Interfaces | 39 | namespace OpenSim.Framework.Interfaces |
39 | { | 40 | { |
@@ -51,7 +52,7 @@ namespace OpenSim.Framework.Interfaces | |||
51 | string GetName(); | 52 | string GetName(); |
52 | bool RequestConnection(LLUUID SimUUID, string sim_ip, uint sim_port); | 53 | bool RequestConnection(LLUUID SimUUID, string sim_ip, uint sim_port); |
53 | void SetServerInfo(string ServerUrl, string SendKey, string RecvKey); | 54 | void SetServerInfo(string ServerUrl, string SendKey, string RecvKey); |
54 | void Close(); | 55 | void Close(); |
55 | } | 56 | } |
56 | 57 | ||
57 | public struct UUIDBlock | 58 | public struct UUIDBlock |
diff --git a/OpenSim.Framework/ILocalStorage.cs b/OpenSim.Framework/Interfaces/ILocalStorage.cs index 2c45baa..a4d2ba1 100644 --- a/OpenSim.Framework/ILocalStorage.cs +++ b/OpenSim.Framework/Interfaces/ILocalStorage.cs | |||
@@ -27,7 +27,7 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using libsecondlife; | 29 | using libsecondlife; |
30 | using OpenSim.Framework.Assets; | 30 | using OpenSim.Framework.Types; |
31 | 31 | ||
32 | namespace OpenSim.Framework.Interfaces | 32 | namespace OpenSim.Framework.Interfaces |
33 | { | 33 | { |
diff --git a/OpenSim.Framework/IScriptAPI.cs b/OpenSim.Framework/Interfaces/IScriptAPI.cs index 2f58198..3ad0f06 100644 --- a/OpenSim.Framework/IScriptAPI.cs +++ b/OpenSim.Framework/Interfaces/IScriptAPI.cs | |||
@@ -1,6 +1,7 @@ | |||
1 | using System; | 1 | using System; |
2 | using System.Collections.Generic; | 2 | using System.Collections.Generic; |
3 | using System.Text; | 3 | using System.Text; |
4 | using OpenSim.Framework.Types; | ||
4 | 5 | ||
5 | namespace OpenSim.Framework.Interfaces | 6 | namespace OpenSim.Framework.Interfaces |
6 | { | 7 | { |
diff --git a/OpenSim.Framework/IScriptEngine.cs b/OpenSim.Framework/Interfaces/IScriptEngine.cs index ed8974c..ed8974c 100644 --- a/OpenSim.Framework/IScriptEngine.cs +++ b/OpenSim.Framework/Interfaces/IScriptEngine.cs | |||
diff --git a/OpenSim.Framework/IUserConfig.cs b/OpenSim.Framework/Interfaces/IUserConfig.cs index e15867d..e15867d 100644 --- a/OpenSim.Framework/IUserConfig.cs +++ b/OpenSim.Framework/Interfaces/IUserConfig.cs | |||
diff --git a/OpenSim.Framework/IUserServer.cs b/OpenSim.Framework/Interfaces/IUserServer.cs index 21f2721..21f2721 100644 --- a/OpenSim.Framework/IUserServer.cs +++ b/OpenSim.Framework/Interfaces/IUserServer.cs | |||
diff --git a/OpenSim.Framework/LocalGridBase.cs b/OpenSim.Framework/Interfaces/LocalGridBase.cs index 6857d6d..c3ab262 100644 --- a/OpenSim.Framework/LocalGridBase.cs +++ b/OpenSim.Framework/Interfaces/LocalGridBase.cs | |||
@@ -2,6 +2,7 @@ using System; | |||
2 | using System.Collections.Generic; | 2 | using System.Collections.Generic; |
3 | using System.Text; | 3 | using System.Text; |
4 | using libsecondlife; | 4 | using libsecondlife; |
5 | using OpenSim.Framework.Types; | ||
5 | 6 | ||
6 | namespace OpenSim.Framework.Interfaces | 7 | namespace OpenSim.Framework.Interfaces |
7 | { | 8 | { |
diff --git a/OpenSim.Framework/RemoteGridBase.cs b/OpenSim.Framework/Interfaces/RemoteGridBase.cs index 0b72b9f..f24ec66 100644 --- a/OpenSim.Framework/RemoteGridBase.cs +++ b/OpenSim.Framework/Interfaces/RemoteGridBase.cs | |||
@@ -1,8 +1,9 @@ | |||
1 | using System; | 1 | using System; |
2 | using System.Collections; | 2 | using System.Collections; |
3 | using System.Collections.Generic; | 3 | using System.Collections.Generic; |
4 | using System.Text; | 4 | using System.Text; |
5 | using libsecondlife; | 5 | using libsecondlife; |
6 | using OpenSim.Framework.Types; | ||
6 | 7 | ||
7 | namespace OpenSim.Framework.Interfaces | 8 | namespace OpenSim.Framework.Interfaces |
8 | { | 9 | { |
@@ -22,14 +23,14 @@ namespace OpenSim.Framework.Interfaces | |||
22 | public abstract bool RequestConnection(LLUUID SimUUID, string sim_ip, uint sim_port); | 23 | public abstract bool RequestConnection(LLUUID SimUUID, string sim_ip, uint sim_port); |
23 | public abstract void SetServerInfo(string ServerUrl, string SendKey, string RecvKey); | 24 | public abstract void SetServerInfo(string ServerUrl, string SendKey, string RecvKey); |
24 | public abstract void Close(); | 25 | public abstract void Close(); |
25 | public abstract Hashtable GridData { | 26 | public abstract Hashtable GridData { |
26 | get; | 27 | get; |
27 | set; | 28 | set; |
28 | } | 29 | } |
29 | 30 | ||
30 | public abstract ArrayList neighbours { | 31 | public abstract ArrayList neighbours { |
31 | get; | 32 | get; |
32 | set; | 33 | set; |
33 | } | 34 | } |
34 | } | 35 | } |
35 | } | 36 | } |