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)
This commit is contained in:
Melanie Thielker
2009-01-09 02:59:56 +00:00
parent fcc3325f3b
commit 7c7ea57c5c
5 changed files with 88 additions and 9 deletions

View File

@@ -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);
/// <summary>
@@ -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);