diff options
author | gareth | 2007-04-15 02:31:34 +0000 |
---|---|---|
committer | gareth | 2007-04-15 02:31:34 +0000 |
commit | f9b7cc53deb93fc3528929385d3f76519083c927 (patch) | |
tree | ae3fbc308febed796772525be7d9a55e4ce24b8e /OpenSim.Framework/RemoteGridBase.cs | |
parent | In the grid, there is life! (diff) | |
download | opensim-SC_OLD-f9b7cc53deb93fc3528929385d3f76519083c927.zip opensim-SC_OLD-f9b7cc53deb93fc3528929385d3f76519083c927.tar.gz opensim-SC_OLD-f9b7cc53deb93fc3528929385d3f76519083c927.tar.bz2 opensim-SC_OLD-f9b7cc53deb93fc3528929385d3f76519083c927.tar.xz |
W00t! multiple sims!
Misc bugfixes
Child agents!!!!!!
General sexy stuff
Diffstat (limited to 'OpenSim.Framework/RemoteGridBase.cs')
-rw-r--r-- | OpenSim.Framework/RemoteGridBase.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim.Framework/RemoteGridBase.cs b/OpenSim.Framework/RemoteGridBase.cs index e1f0b9b..0b72b9f 100644 --- a/OpenSim.Framework/RemoteGridBase.cs +++ b/OpenSim.Framework/RemoteGridBase.cs | |||
@@ -1,4 +1,5 @@ | |||
1 | using System; | 1 | using System; |
2 | using System.Collections; | ||
2 | using System.Collections.Generic; | 3 | using System.Collections.Generic; |
3 | using System.Text; | 4 | using System.Text; |
4 | using libsecondlife; | 5 | using libsecondlife; |
@@ -21,5 +22,14 @@ namespace OpenSim.Framework.Interfaces | |||
21 | public abstract bool RequestConnection(LLUUID SimUUID, string sim_ip, uint sim_port); | 22 | public abstract bool RequestConnection(LLUUID SimUUID, string sim_ip, uint sim_port); |
22 | public abstract void SetServerInfo(string ServerUrl, string SendKey, string RecvKey); | 23 | public abstract void SetServerInfo(string ServerUrl, string SendKey, string RecvKey); |
23 | public abstract void Close(); | 24 | public abstract void Close(); |
25 | public abstract Hashtable GridData { | ||
26 | get; | ||
27 | set; | ||
28 | } | ||
29 | |||
30 | public abstract ArrayList neighbours { | ||
31 | get; | ||
32 | set; | ||
33 | } | ||
24 | } | 34 | } |
25 | } | 35 | } |