aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authormingchen2007-12-16 19:53:27 +0000
committermingchen2007-12-16 19:53:27 +0000
commite2ed1a4e1f2776e5b929207f1ca6e271a4d6f6e1 (patch)
treeb309a467295e79cb133d1b4daffac3e2dd30af27 /OpenSim/Framework/IClientAPI.cs
parentReposition 'user profile not found' messages to stop spurious messages caused... (diff)
downloadopensim-SC_OLD-e2ed1a4e1f2776e5b929207f1ca6e271a4d6f6e1.zip
opensim-SC_OLD-e2ed1a4e1f2776e5b929207f1ca6e271a4d6f6e1.tar.gz
opensim-SC_OLD-e2ed1a4e1f2776e5b929207f1ca6e271a4d6f6e1.tar.bz2
opensim-SC_OLD-e2ed1a4e1f2776e5b929207f1ca6e271a4d6f6e1.tar.xz
*Adding and Removing Avatars from the Access/Ban List for a parcel now works, but the actual ban lines, etc are not done.
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 62a97e5..7d9fd9a 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -301,6 +301,10 @@ namespace OpenSim.Framework
301 301
302 public delegate void MoveObject(LLUUID objectID, LLVector3 offset, LLVector3 grapPos, IClientAPI remoteClient); 302 public delegate void MoveObject(LLUUID objectID, LLVector3 offset, LLVector3 grapPos, IClientAPI remoteClient);
303 303
304 public delegate void ParcelAccessListRequest(LLUUID agentID, LLUUID sessionID, uint flags, int sequenceID, int landLocalID,IClientAPI remote_client);
305
306 public delegate void ParcelAccessListUpdateRequest(LLUUID agentID, LLUUID sessionID,uint flags, int landLocalID, List<libsecondlife.ParcelManager.ParcelAccessEntry> entries, IClientAPI remote_client);
307
304 public delegate void ParcelPropertiesRequest( 308 public delegate void ParcelPropertiesRequest(
305 int start_x, int start_y, int end_x, int end_y, int sequence_id, bool snap_selection, IClientAPI remote_client); 309 int start_x, int start_y, int end_x, int end_y, int sequence_id, bool snap_selection, IClientAPI remote_client);
306 310
@@ -453,6 +457,8 @@ namespace OpenSim.Framework
453 457
454 event UUIDNameRequest OnNameFromUUIDRequest; 458 event UUIDNameRequest OnNameFromUUIDRequest;
455 459
460 event ParcelAccessListRequest OnParcelAccessListRequest;
461 event ParcelAccessListUpdateRequest OnParcelAccessListUpdateRequest;
456 event ParcelPropertiesRequest OnParcelPropertiesRequest; 462 event ParcelPropertiesRequest OnParcelPropertiesRequest;
457 event ParcelDivideRequest OnParcelDivideRequest; 463 event ParcelDivideRequest OnParcelDivideRequest;
458 event ParcelJoinRequest OnParcelJoinRequest; 464 event ParcelJoinRequest OnParcelJoinRequest;