aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorMelanie Thielker2009-01-03 20:45:33 +0000
committerMelanie Thielker2009-01-03 20:45:33 +0000
commit7beb8a5abb801c285d16a5b1e4d8538d0381c671 (patch)
treed0a64f8e4e32a139ce3ace1d29fd5a73ae88c38c /OpenSim/Framework/IClientAPI.cs
parentFixed logic for sending foreign user information (HG). (diff)
downloadopensim-SC_OLD-7beb8a5abb801c285d16a5b1e4d8538d0381c671.zip
opensim-SC_OLD-7beb8a5abb801c285d16a5b1e4d8538d0381c671.tar.gz
opensim-SC_OLD-7beb8a5abb801c285d16a5b1e4d8538d0381c671.tar.bz2
opensim-SC_OLD-7beb8a5abb801c285d16a5b1e4d8538d0381c671.tar.xz
Plumb the remaining dwell packets
Diffstat (limited to '')
-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 79311d5..cb4af37 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -422,6 +422,8 @@ namespace OpenSim.Framework
422 422
423 public delegate void EventGodDelete(uint eventID, UUID queryID, string queryText, uint queryFlags, int queryStart, IClientAPI client); 423 public delegate void EventGodDelete(uint eventID, UUID queryID, string queryText, uint queryFlags, int queryStart, IClientAPI client);
424 424
425 public delegate void ParcelDwellRequest(int localID, IClientAPI client);
426
425 #endregion 427 #endregion
426 428
427 public struct DirPlacesReplyData 429 public struct DirPlacesReplyData
@@ -741,6 +743,8 @@ namespace OpenSim.Framework
741 event EventNotificationRemoveRequest OnEventNotificationRemoveRequest; 743 event EventNotificationRemoveRequest OnEventNotificationRemoveRequest;
742 event EventGodDelete OnEventGodDelete; 744 event EventGodDelete OnEventGodDelete;
743 745
746 event ParcelDwellRequest OnParcelDwellRequest;
747
744 // void ActivateGesture(UUID assetId, UUID gestureId); 748 // void ActivateGesture(UUID assetId, UUID gestureId);
745 749
746 /// <summary> 750 /// <summary>
@@ -1082,6 +1086,8 @@ namespace OpenSim.Framework
1082 void SendAvatarPicksReply(UUID targetID, Dictionary<UUID, string> picks); 1086 void SendAvatarPicksReply(UUID targetID, Dictionary<UUID, string> picks);
1083 void SendAvatarClassifiedReply(UUID targetID, Dictionary<UUID, string> classifieds); 1087 void SendAvatarClassifiedReply(UUID targetID, Dictionary<UUID, string> classifieds);
1084 1088
1089 void SendParcelDwellReply(int localID, UUID parcelID, float dwell);
1090
1085 void KillEndDone(); 1091 void KillEndDone();
1086 1092
1087 bool AddGenericPacketHandler(string MethodName, GenericMessage handler); 1093 bool AddGenericPacketHandler(string MethodName, GenericMessage handler);