diff options
author | Teravus Ovares | 2007-11-24 01:38:36 +0000 |
---|---|---|
committer | Teravus Ovares | 2007-11-24 01:38:36 +0000 |
commit | 52714c339e49e8f1f839b315cd6b4da1bb53e82a (patch) | |
tree | 73a7994d316638607dfcb79a64a7d4f13db4a875 /OpenSim/Framework | |
parent | *Shared Modules have feelings too! -- Shared Region Modules that are found in... (diff) | |
download | opensim-SC_OLD-52714c339e49e8f1f839b315cd6b4da1bb53e82a.zip opensim-SC_OLD-52714c339e49e8f1f839b315cd6b4da1bb53e82a.tar.gz opensim-SC_OLD-52714c339e49e8f1f839b315cd6b4da1bb53e82a.tar.bz2 opensim-SC_OLD-52714c339e49e8f1f839b315cd6b4da1bb53e82a.tar.xz |
* Hanling RequestGodlikePowers. On Request.. sends the sim owner's client the appropriate messages to make it think it's got god status. Will be used for finding more unimplemented packets....
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 2c82d97..f7e3521 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -267,6 +267,8 @@ namespace OpenSim.Framework | |||
267 | 267 | ||
268 | public delegate void AddNewPrim(LLUUID ownerID, LLVector3 pos, LLQuaternion rot, PrimitiveBaseShape shape); | 268 | public delegate void AddNewPrim(LLUUID ownerID, LLVector3 pos, LLQuaternion rot, PrimitiveBaseShape shape); |
269 | 269 | ||
270 | public delegate void RequestGodlikePowers(LLUUID AgentID, LLUUID SessionID, LLUUID token, IClientAPI remote_client); | ||
271 | |||
270 | public delegate void CreateInventoryFolder( | 272 | public delegate void CreateInventoryFolder( |
271 | IClientAPI remoteClient, LLUUID folderID, ushort folderType, string folderName, LLUUID parentID); | 273 | IClientAPI remoteClient, LLUUID folderID, ushort folderType, string folderName, LLUUID parentID); |
272 | 274 | ||
@@ -329,6 +331,9 @@ namespace OpenSim.Framework | |||
329 | event AvatarPickerRequest OnAvatarPickerRequest; | 331 | event AvatarPickerRequest OnAvatarPickerRequest; |
330 | event Action<IClientAPI> OnRequestAvatarsData; | 332 | event Action<IClientAPI> OnRequestAvatarsData; |
331 | event AddNewPrim OnAddPrim; | 333 | event AddNewPrim OnAddPrim; |
334 | |||
335 | event RequestGodlikePowers OnRequestGodlikePowers; | ||
336 | |||
332 | event ObjectDuplicate OnObjectDuplicate; | 337 | event ObjectDuplicate OnObjectDuplicate; |
333 | event UpdateVector OnGrabObject; | 338 | event UpdateVector OnGrabObject; |
334 | event ObjectSelect OnDeGrabObject; | 339 | event ObjectSelect OnDeGrabObject; |