diff options
Diffstat (limited to 'OpenSim.Framework/RemoteGridBase.cs')
-rw-r--r-- | OpenSim.Framework/RemoteGridBase.cs | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/OpenSim.Framework/RemoteGridBase.cs b/OpenSim.Framework/RemoteGridBase.cs deleted file mode 100644 index 0b72b9f..0000000 --- a/OpenSim.Framework/RemoteGridBase.cs +++ /dev/null | |||
@@ -1,35 +0,0 @@ | |||
1 | using System; | ||
2 | using System.Collections; | ||
3 | using System.Collections.Generic; | ||
4 | using System.Text; | ||
5 | using libsecondlife; | ||
6 | |||
7 | namespace OpenSim.Framework.Interfaces | ||
8 | { | ||
9 | public abstract class RemoteGridBase : IGridServer | ||
10 | { | ||
11 | public abstract Dictionary<uint, AgentCircuitData> agentcircuits | ||
12 | { | ||
13 | get; | ||
14 | set; | ||
15 | } | ||
16 | |||
17 | public abstract UUIDBlock RequestUUIDBlock(); | ||
18 | public abstract NeighbourInfo[] RequestNeighbours(); | ||
19 | public abstract AuthenticateResponse AuthenticateSession(LLUUID sessionID, LLUUID agentID, uint circuitCode); | ||
20 | public abstract bool LogoutSession(LLUUID sessionID, LLUUID agentID, uint circuitCode); | ||
21 | public abstract string GetName(); | ||
22 | 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 Close(); | ||
25 | public abstract Hashtable GridData { | ||
26 | get; | ||
27 | set; | ||
28 | } | ||
29 | |||
30 | public abstract ArrayList neighbours { | ||
31 | get; | ||
32 | set; | ||
33 | } | ||
34 | } | ||
35 | } | ||