aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenSim.Framework/Interfaces/LocalGridBase.cs
blob: ff465023741060d4120361904e676e9a3519327c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;
using System.Text;
using libsecondlife;
using OpenSim.Framework.Types;
using System.Collections;

namespace OpenSim.Framework.Interfaces
{
    public abstract class LocalGridBase : IGridServer
    {
        public abstract UUIDBlock RequestUUIDBlock();
        public abstract NeighbourInfo[] RequestNeighbours();
        public abstract AuthenticateResponse AuthenticateSession(LLUUID sessionID, LLUUID agentID, uint circuitCode);
        public abstract bool LogoutSession(LLUUID sessionID, LLUUID agentID, uint circuitCode);
        public abstract string GetName();
        public abstract bool RequestConnection(LLUUID SimUUID, string sim_ip, uint sim_port);
        public abstract void SetServerInfo(string ServerUrl, string SendKey, string RecvKey);
        public abstract void AddNewSession(Login session);
        public abstract IList RequestMapBlocks(int minX, int minY, int maxX, int maxY);
        public abstract void Close();
    }

}