diff options
Diffstat (limited to 'OpenSim.Framework/RemoteGridBase.cs')
-rw-r--r-- | OpenSim.Framework/RemoteGridBase.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/OpenSim.Framework/RemoteGridBase.cs b/OpenSim.Framework/RemoteGridBase.cs new file mode 100644 index 0000000..6ca57df --- /dev/null +++ b/OpenSim.Framework/RemoteGridBase.cs | |||
@@ -0,0 +1,25 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using libsecondlife; | ||
5 | |||
6 | namespace OpenSim.Framework.Interfaces | ||
7 | { | ||
8 | public abstract class RemoteGridBase : IGridServer | ||
9 | { | ||
10 | public abstract Dictionary<uint, AgentCircuitData> agentcircuits | ||
11 | { | ||
12 | get; | ||
13 | set; | ||
14 | } | ||
15 | |||
16 | public abstract UUIDBlock RequestUUIDBlock(); | ||
17 | public abstract NeighbourInfo[] RequestNeighbours(); | ||
18 | public abstract AuthenticateResponse AuthenticateSession(LLUUID sessionID, LLUUID agentID, uint circuitCode); | ||
19 | public abstract bool LogoutSession(LLUUID sessionID, LLUUID agentID, uint circuitCode); | ||
20 | public abstract string GetName(); | ||
21 | public abstract bool RequestConnection(); | ||
22 | public abstract void SetServerInfo(string ServerUrl, string SendKey, string RecvKey); | ||
23 | public abstract void Close(); | ||
24 | } | ||
25 | } | ||