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.
18 lines
514 B
C#
18 lines
514 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Net;
|
|
using System.Net.Sockets;
|
|
|
|
namespace OpenSim
|
|
{
|
|
public interface OpenSimNetworkHandler
|
|
{
|
|
//public abstract void StartUp();
|
|
// public abstract void Shutdown();
|
|
void SendPacketTo(byte[] buffer, int size, SocketFlags flags, uint circuitcode);// EndPoint packetSender);
|
|
void RemoveClientCircuit(uint circuitcode);
|
|
void RegisterPacketServer(PacketServer server);
|
|
}
|
|
}
|