mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 08:06:27 +08:00
Renamed the new Directories. (removed the "-Source" from the end of them)
This commit is contained in:
18
OpenSim/OpenSim.RegionServer/OpenSimNetworkHandler.cs
Normal file
18
OpenSim/OpenSim.RegionServer/OpenSimNetworkHandler.cs
Normal file
@@ -0,0 +1,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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user