From 97d5b5a1eb159e539586ca8043304f8277b8d0e3 Mon Sep 17 00:00:00 2001 From: Mike Mazur Date: Fri, 8 Aug 2008 09:19:23 +0000 Subject: De-coupling the IClientAPI interface and ClientManager class from the libsl/libomv Packet, as other client stacks could use other data types to pass packets around. Starting with InPacket() here, more to come. --- OpenSim/Framework/ClientManager.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'OpenSim/Framework/ClientManager.cs') diff --git a/OpenSim/Framework/ClientManager.cs b/OpenSim/Framework/ClientManager.cs index 85dafef..091f308 100644 --- a/OpenSim/Framework/ClientManager.cs +++ b/OpenSim/Framework/ClientManager.cs @@ -88,7 +88,12 @@ namespace OpenSim.Framework } } - public void InPacket(uint circuitCode, Packet packet) + /// + /// Pass incoming packet to client. + /// + /// uint identifying the connection/client. + /// object containing the packet. + public void InPacket(uint circuitCode, object packet) { IClientAPI client; bool tryGetRet = false; -- cgit v1.1