aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim.Framework/Interfaces/RemoteGridBase.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim.Framework/Interfaces/RemoteGridBase.cs (renamed from OpenSim.Framework/RemoteGridBase.cs)21
1 files changed, 11 insertions, 10 deletions
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 @@
1using System; 1using System;
2using System.Collections; 2using System.Collections;
3using System.Collections.Generic; 3using System.Collections.Generic;
4using System.Text; 4using System.Text;
5using libsecondlife; 5using libsecondlife;
6using OpenSim.Framework.Types;
6 7
7namespace OpenSim.Framework.Interfaces 8namespace 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}