aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim.RegionServer/OpenSimApplication.cs
blob: abfdf4581224c467c3d8f972a8eea1465521745c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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);
    }
}