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