From 7c7ea57c5c2bf01280e2df03cedc999aa5e7be87 Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Fri, 9 Jan 2009 02:59:56 +0000 Subject: Finish dwell sending, adding the forgotten method body. Add UserInfo and a dummy reply to enable Hippo Viewer users to disable IM logging (option was greyed out in OpenSim before) --- OpenSim/Framework/IClientAPI.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'OpenSim/Framework/IClientAPI.cs') diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index cb4af37..cb60028 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs @@ -424,6 +424,9 @@ namespace OpenSim.Framework public delegate void ParcelDwellRequest(int localID, IClientAPI client); + public delegate void UserInfoRequest(IClientAPI client); + public delegate void UpdateUserInfo(bool imViaEmail, bool visible, IClientAPI client); + #endregion public struct DirPlacesReplyData @@ -577,7 +580,6 @@ namespace OpenSim.Framework event AddNewPrim OnAddPrim; event FetchInventory OnAgentDataUpdateRequest; - event FetchInventory OnUserInfoRequest; event TeleportLocationRequest OnSetStartLocationRequest; event RequestGodlikePowers OnRequestGodlikePowers; @@ -745,6 +747,9 @@ namespace OpenSim.Framework event ParcelDwellRequest OnParcelDwellRequest; + event UserInfoRequest OnUserInfoRequest; + event UpdateUserInfo OnUpdateUserInfo; + // void ActivateGesture(UUID assetId, UUID gestureId); /// @@ -1088,6 +1093,8 @@ namespace OpenSim.Framework void SendParcelDwellReply(int localID, UUID parcelID, float dwell); + void SendUserInfoReply(bool imViaEmail, bool visible, string email); + void KillEndDone(); bool AddGenericPacketHandler(string MethodName, GenericMessage handler); -- cgit v1.1