aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/OpenSim.RegionServer/OpenSimNetworkHandler.cs
blob: 15ee7404957609d796b2654c23dcc05a4ddf58e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.Collections.Generic;
using System.Text;
using System.Net;
using System.Net.Sockets;
using libsecondlife;
using OpenSim.Framework.Interfaces;

namespace OpenSim
{
    public interface OpenSimNetworkHandler
    {
        void SendPacketTo(byte[] buffer, int size, SocketFlags flags, uint circuitcode);// EndPoint packetSender);
        void RemoveClientCircuit(uint circuitcode);
        void RegisterPacketServer(PacketServer server);
        AuthenticateResponse AuthenticateSession(LLUUID sessionID, LLUUID agentID, uint circuitCode);
    }
}