From 230835dbaab80bc672b5cbd9f12e09930ed516e1 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Wed, 15 Oct 2008 17:06:47 +0000 Subject: * refactor: Remove OutPacket from the IClientAPI * I believe this is reasonable since code outside the Linden client stack shouldn't be aware of the packet format being used * I would love to have made the method protected, but the LoadBalancerPlugin is still calling it and resolving that would require more work --- OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'OpenSim/Region/Examples') diff --git a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs index 663e768..cc49072 100644 --- a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs +++ b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs @@ -326,11 +326,6 @@ namespace OpenSim.Region.Examples.SimpleModule { } - - public virtual void OutPacket(Packet newPack, ThrottleOutPacketType packType) - { - } - public virtual void SendWearables(AvatarWearable[] wearables, int serial) { } @@ -821,38 +816,42 @@ namespace OpenSim.Region.Examples.SimpleModule public void SendRegionInfoToEstateMenu(RegionInfoForEstateMenuArgs args) { } + public void SendEstateCovenantInformation(UUID covenant) { } + public void SendDetailedEstateData(UUID invoice, string estateName, uint estateID, uint parentEstate, uint estateFlags, uint sunPosition, UUID covenant, string abuseEmail, UUID estateOwner) { } - public void SendLandProperties(IClientAPI remote_client, int sequence_id, bool snap_selection, int request_result, LandData landData, float simObjectBonusFactor, int parcelObjectCapacity, int simObjectCapacity, uint regionFlags) + public void SendLandProperties(int sequence_id, bool snap_selection, int request_result, LandData landData, float simObjectBonusFactor, int parcelObjectCapacity, int simObjectCapacity, uint regionFlags) { } + public void SendLandAccessListData(List avatars, uint accessFlag, int localLandID) { } + public void SendForceClientSelectObjects(List objectIDs) { } + public void SendLandObjectOwners(Dictionary ownersAndCount) { } + public void SendLandParcelOverlay(byte[] data, int sequence_id) { } public void SendParcelMediaCommand(uint flags, ParcelMediaCommandEnum command, float time) { - } public void SendParcelMediaUpdate(string mediaUrl, UUID mediaTextureID, byte autoScale, string mediaType, string mediaDesc, int mediaWidth, int mediaHeight, byte mediaLoop) { - } public void SendGroupNameReply(UUID groupLLUID, string GroupName) -- cgit v1.1