mirror of
git://opensimulator.org/git/opensim
synced 2026-08-14 17:12:17 +00:00
Currently the vm is at a early stage and very limited: currently only supports static methods (instance methods support is nearly finished though) currently a class can't have member variables, so currently only local variables in the methods. Also in this branch, connecting the vm to opensim is not completely finished: it is being uploaded just for viewing purposes.
26 lines
949 B
C#
26 lines
949 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using libsecondlife;
|
|
|
|
namespace OpenSim.Framework.Interfaces
|
|
{
|
|
public abstract class RemoteGridBase : IGridServer
|
|
{
|
|
public abstract Dictionary<uint, AgentCircuitData> agentcircuits
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
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 Close();
|
|
}
|
|
}
|