From a963b3057bdc80fc403e2b8402d0666c3d3f5c97 Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Tue, 18 Sep 2007 09:59:33 +0000 Subject: * Replaced usage of ClientView with IClientAPI * Some propertification and hideousness of fields. --- OpenSim/Framework/General/Interfaces/IClientAPI.cs | 2 ++ OpenSim/Framework/General/NullClientAPI.cs | 8 ++++++++ 2 files changed, 10 insertions(+) (limited to 'OpenSim/Framework') diff --git a/OpenSim/Framework/General/Interfaces/IClientAPI.cs b/OpenSim/Framework/General/Interfaces/IClientAPI.cs index 747ad5c..580a263 100644 --- a/OpenSim/Framework/General/Interfaces/IClientAPI.cs +++ b/OpenSim/Framework/General/Interfaces/IClientAPI.cs @@ -241,5 +241,7 @@ namespace OpenSim.Framework.Interfaces void SendViewerTime(int phase); void SendAvatarProperties(LLUUID avatarID, string aboutText, string bornOn, string charterMember, string flAbout, uint flags, LLUUID flImageID, LLUUID imageID, string profileURL, LLUUID partnerID); void SetDebug(int newDebug); + void InPacket(Packet NewPack); + void ConnectionClosed(); } } diff --git a/OpenSim/Framework/General/NullClientAPI.cs b/OpenSim/Framework/General/NullClientAPI.cs index cf7e448..2b6de9e 100644 --- a/OpenSim/Framework/General/NullClientAPI.cs +++ b/OpenSim/Framework/General/NullClientAPI.cs @@ -167,6 +167,14 @@ namespace OpenSim.Framework public void SendViewerTime(int phase) { } public void SendAvatarProperties(LLUUID avatarID, string aboutText, string bornOn, string charterMember, string flAbout, uint flags, LLUUID flImageID, LLUUID imageID, string profileURL, LLUUID partnerID) { } public void SetDebug(int newDebug) { } + + public void InPacket(Packet NewPack) + { + } + + public void ConnectionClosed() + { + } } } -- cgit v1.1