aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorMelanie Thielker2008-12-23 18:16:30 +0000
committerMelanie Thielker2008-12-23 18:16:30 +0000
commitfc053a6af8cf2f9dc158d8bc3d3ff5597d50b69f (patch)
tree4d68ff7e79e99d167b234c7c0cce92715f5a9cd2 /OpenSim/Framework/IClientAPI.cs
parent* Remove mono compiler warning (diff)
downloadopensim-SC_OLD-fc053a6af8cf2f9dc158d8bc3d3ff5597d50b69f.zip
opensim-SC_OLD-fc053a6af8cf2f9dc158d8bc3d3ff5597d50b69f.tar.gz
opensim-SC_OLD-fc053a6af8cf2f9dc158d8bc3d3ff5597d50b69f.tar.bz2
opensim-SC_OLD-fc053a6af8cf2f9dc158d8bc3d3ff5597d50b69f.tar.xz
Plumb in the 4 missing classified events and the 3 packet methods
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index f9071a5..d683802 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -413,6 +413,11 @@ namespace OpenSim.Framework
413 public delegate void StartLure(byte lureType, string message, UUID targetID, IClientAPI client); 413 public delegate void StartLure(byte lureType, string message, UUID targetID, IClientAPI client);
414 public delegate void TeleportLureRequest(UUID lureID, uint teleportFlags, IClientAPI client); 414 public delegate void TeleportLureRequest(UUID lureID, uint teleportFlags, IClientAPI client);
415 415
416 public delegate void ClassifiedInfoRequest(UUID classifiedID, IClientAPI client);
417 public delegate void ClassifiedInfoUpdate(UUID classifiedID, uint category, string name, string description, UUID parcelID, uint parentEstate, UUID snapshotID, Vector3 globalPos, byte classifiedFlags, int price, IClientAPI client);
418 public delegate void ClassifiedDelete(UUID classifiedID, IClientAPI client);
419
420
416 #endregion 421 #endregion
417 422
418 public struct DirPlacesReplyData 423 public struct DirPlacesReplyData
@@ -723,6 +728,13 @@ namespace OpenSim.Framework
723 event TeleportLureRequest OnTeleportLureRequest; 728 event TeleportLureRequest OnTeleportLureRequest;
724 event NetworkStats OnNetworkStatsUpdate; 729 event NetworkStats OnNetworkStatsUpdate;
725 730
731 event ClassifiedInfoRequest OnClassifiedInfoRequest;
732 event ClassifiedInfoUpdate OnClassifiedInfoUpdate;
733 event ClassifiedDelete OnClassifiedDelete;
734 event ClassifiedDelete OnClassifiedGodDelete;
735
736 // void ActivateGesture(UUID assetId, UUID gestureId);
737
726 /// <summary> 738 /// <summary>
727 /// Tell this client what items it should be wearing now 739 /// Tell this client what items it should be wearing now
728 /// </summary> 740 /// </summary>
@@ -1054,6 +1066,9 @@ namespace OpenSim.Framework
1054 1066
1055 void SendTerminateFriend(UUID exFriendID); 1067 void SendTerminateFriend(UUID exFriendID);
1056 1068
1069 void SendAvatarClassifiedReply(UUID targetID, UUID[] classifiedID, string[] name);
1070 void SendClassifiedInfoReply(UUID classifiedID, UUID creatorID, uint creationDate, uint expirationDate, uint category, string name, string description, UUID parcelID, uint parentEstate, UUID snapshotID, string simName, Vector3 globalPos, string parcelName, byte classifiedFlags, int price);
1071
1057 void KillEndDone(); 1072 void KillEndDone();
1058 1073
1059 bool AddGenericPacketHandler(string MethodName, GenericMessage handler); 1074 bool AddGenericPacketHandler(string MethodName, GenericMessage handler);