aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenSim.Framework/Interfaces/AuthenticateResponse.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Common/OpenSim.Framework/Interfaces/AuthenticateResponse.cs (renamed from Common/OpenSim.Framework/Interfaces/LocalGridBase.cs)28
1 files changed, 14 insertions, 14 deletions
diff --git a/Common/OpenSim.Framework/Interfaces/LocalGridBase.cs b/Common/OpenSim.Framework/Interfaces/AuthenticateResponse.cs
index 4b5fa77..462e2c5 100644
--- a/Common/OpenSim.Framework/Interfaces/LocalGridBase.cs
+++ b/Common/OpenSim.Framework/Interfaces/AuthenticateResponse.cs
@@ -26,26 +26,26 @@
26* 26*
27*/ 27*/
28using System; 28using System;
29using System.Collections;
29using System.Collections.Generic; 30using System.Collections.Generic;
30using System.Text; 31using System.Net;
32using System.Net.Sockets;
33using System.IO;
31using libsecondlife; 34using libsecondlife;
35using OpenSim;
32using OpenSim.Framework.Types; 36using OpenSim.Framework.Types;
33using System.Collections;
34 37
35namespace OpenSim.Framework.Interfaces 38namespace OpenSim.Framework.Interfaces
36{ 39{
37 public abstract class LocalGridBase : IGridServer 40 public class AuthenticateResponse
38 { 41 {
39 public abstract UUIDBlock RequestUUIDBlock(); 42 public bool Authorised;
40 public abstract NeighbourInfo[] RequestNeighbours(); 43 public Login LoginInfo;
41 public abstract AuthenticateResponse AuthenticateSession(LLUUID sessionID, LLUUID agentID, uint circuitCode);
42 public abstract bool LogoutSession(LLUUID sessionID, LLUUID agentID, uint circuitCode);
43 public abstract string GetName();
44 public abstract bool RequestConnection(LLUUID SimUUID, string sim_ip, uint sim_port);
45 public abstract void SetServerInfo(string ServerUrl, string SendKey, string RecvKey);
46 public abstract void AddNewSession(Login session);
47 public abstract IList RequestMapBlocks(int minX, int minY, int maxX, int maxY);
48 public abstract void Close();
49 }
50 44
45 public AuthenticateResponse()
46 {
47
48 }
49
50 }
51} 51}