mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 10:15:33 +08:00
brought zircon branch into trunk
This commit is contained in:
16
OpenSim.RegionServer/OpenSimApplication.cs
Normal file
16
OpenSim.RegionServer/OpenSimApplication.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Net;
|
||||
using System.Net.Sockets;
|
||||
|
||||
namespace OpenSim
|
||||
{
|
||||
public abstract class OpenSimApplication
|
||||
{
|
||||
public abstract void StartUp();
|
||||
public abstract void Shutdown();
|
||||
public abstract void SendPacketTo(byte[] buffer, int size, SocketFlags flags, uint circuitcode);// EndPoint packetSender);
|
||||
public abstract void RemoveClientCircuit(uint circuitcode);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user