diff options
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 9 |
1 files changed, 8 insertions, 1 deletions
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 | |||
424 | 424 | ||
425 | public delegate void ParcelDwellRequest(int localID, IClientAPI client); | 425 | public delegate void ParcelDwellRequest(int localID, IClientAPI client); |
426 | 426 | ||
427 | public delegate void UserInfoRequest(IClientAPI client); | ||
428 | public delegate void UpdateUserInfo(bool imViaEmail, bool visible, IClientAPI client); | ||
429 | |||
427 | #endregion | 430 | #endregion |
428 | 431 | ||
429 | public struct DirPlacesReplyData | 432 | public struct DirPlacesReplyData |
@@ -577,7 +580,6 @@ namespace OpenSim.Framework | |||
577 | event AddNewPrim OnAddPrim; | 580 | event AddNewPrim OnAddPrim; |
578 | 581 | ||
579 | event FetchInventory OnAgentDataUpdateRequest; | 582 | event FetchInventory OnAgentDataUpdateRequest; |
580 | event FetchInventory OnUserInfoRequest; | ||
581 | event TeleportLocationRequest OnSetStartLocationRequest; | 583 | event TeleportLocationRequest OnSetStartLocationRequest; |
582 | 584 | ||
583 | event RequestGodlikePowers OnRequestGodlikePowers; | 585 | event RequestGodlikePowers OnRequestGodlikePowers; |
@@ -745,6 +747,9 @@ namespace OpenSim.Framework | |||
745 | 747 | ||
746 | event ParcelDwellRequest OnParcelDwellRequest; | 748 | event ParcelDwellRequest OnParcelDwellRequest; |
747 | 749 | ||
750 | event UserInfoRequest OnUserInfoRequest; | ||
751 | event UpdateUserInfo OnUpdateUserInfo; | ||
752 | |||
748 | // void ActivateGesture(UUID assetId, UUID gestureId); | 753 | // void ActivateGesture(UUID assetId, UUID gestureId); |
749 | 754 | ||
750 | /// <summary> | 755 | /// <summary> |
@@ -1088,6 +1093,8 @@ namespace OpenSim.Framework | |||
1088 | 1093 | ||
1089 | void SendParcelDwellReply(int localID, UUID parcelID, float dwell); | 1094 | void SendParcelDwellReply(int localID, UUID parcelID, float dwell); |
1090 | 1095 | ||
1096 | void SendUserInfoReply(bool imViaEmail, bool visible, string email); | ||
1097 | |||
1091 | void KillEndDone(); | 1098 | void KillEndDone(); |
1092 | 1099 | ||
1093 | bool AddGenericPacketHandler(string MethodName, GenericMessage handler); | 1100 | bool AddGenericPacketHandler(string MethodName, GenericMessage handler); |