From cded99626595dba9f15ad5485cf2fe1260c3266f Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Sun, 25 Nov 2018 18:56:38 +0000 Subject: remove a dev only conditional on lludp handlers; change parcel lists updates a bit; --- OpenSim/Framework/IClientAPI.cs | 6 ++---- OpenSim/Framework/ILandObject.cs | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) (limited to 'OpenSim/Framework') diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index f8bf583..1c042c4 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs @@ -182,10 +182,8 @@ namespace OpenSim.Framework public delegate void ParcelAccessListRequest( UUID agentID, UUID sessionID, uint flags, int sequenceID, int landLocalID, IClientAPI remote_client); - public delegate void ParcelAccessListUpdateRequest(UUID agentID, uint flags, - int landLocalID, UUID transactionID, int sequenceID, - int sections, List entries, - IClientAPI remote_client); + public delegate void ParcelAccessListUpdateRequest(UUID agentID, uint flags, UUID transactionID, + int landLocalID, List entries, IClientAPI remote_client); public delegate void ParcelPropertiesRequest( int start_x, int start_y, int end_x, int end_y, int sequence_id, bool snap_selection, IClientAPI remote_client); diff --git a/OpenSim/Framework/ILandObject.cs b/OpenSim/Framework/ILandObject.cs index a783256..1f39482 100644 --- a/OpenSim/Framework/ILandObject.cs +++ b/OpenSim/Framework/ILandObject.cs @@ -85,7 +85,7 @@ namespace OpenSim.Framework void SendLandUpdateToClient(bool snap_selection, IClientAPI remote_client); List CreateAccessListArrayByFlag(AccessList flag); void SendAccessList(UUID agentID, UUID sessionID, uint flags, int sequenceID, IClientAPI remote_client); - void UpdateAccessList(uint flags, UUID transactionID, int sequenceID, int sections, List entries, IClientAPI remote_client); + void UpdateAccessList(uint flags, UUID transationID, List entries); void UpdateLandBitmapByteArray(); void SetLandBitmapFromByteArray(); bool[,] GetLandBitmap(); -- cgit v1.1