mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user