diff options
Diffstat (limited to 'OpenSim.Framework/LocalGridBase.cs')
-rw-r--r-- | OpenSim.Framework/LocalGridBase.cs | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/OpenSim.Framework/LocalGridBase.cs b/OpenSim.Framework/LocalGridBase.cs deleted file mode 100644 index 6857d6d..0000000 --- a/OpenSim.Framework/LocalGridBase.cs +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
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 LocalGridBase : IGridServer | ||
9 | { | ||
10 | public abstract UUIDBlock RequestUUIDBlock(); | ||
11 | public abstract NeighbourInfo[] RequestNeighbours(); | ||
12 | public abstract AuthenticateResponse AuthenticateSession(LLUUID sessionID, LLUUID agentID, uint circuitCode); | ||
13 | public abstract bool LogoutSession(LLUUID sessionID, LLUUID agentID, uint circuitCode); | ||
14 | public abstract string GetName(); | ||
15 | public abstract bool RequestConnection(LLUUID SimUUID, string sim_ip, uint sim_port); | ||
16 | public abstract void SetServerInfo(string ServerUrl, string SendKey, string RecvKey); | ||
17 | public abstract void AddNewSession(Login session); | ||
18 | public abstract void Close(); | ||
19 | } | ||
20 | |||
21 | } | ||