More refactoring.

Changed AuthenticateSession handling, now calls a method in UDPServer. (but is likely to change again soon)
This commit is contained in:
MW
2007-05-16 15:46:22 +00:00
parent 7f42258e62
commit 3f39648605
13 changed files with 505 additions and 796 deletions

View File

@@ -3,6 +3,8 @@ using System.Collections.Generic;
using System.Text;
using System.Net;
using System.Net.Sockets;
using libsecondlife;
using OpenSim.Framework.Interfaces;
namespace OpenSim
{
@@ -11,5 +13,6 @@ namespace OpenSim
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);
}
}