aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorMelanie Thielker2009-01-09 02:59:56 +0000
committerMelanie Thielker2009-01-09 02:59:56 +0000
commit7c7ea57c5c2bf01280e2df03cedc999aa5e7be87 (patch)
tree73f90c8e9e362f7055bccf31af83fe332ce2f9ab /OpenSim/Framework/IClientAPI.cs
parent* Adds the variables passed to the hashtable BaseHttpServer passes in. (diff)
downloadopensim-SC_OLD-7c7ea57c5c2bf01280e2df03cedc999aa5e7be87.zip
opensim-SC_OLD-7c7ea57c5c2bf01280e2df03cedc999aa5e7be87.tar.gz
opensim-SC_OLD-7c7ea57c5c2bf01280e2df03cedc999aa5e7be87.tar.bz2
opensim-SC_OLD-7c7ea57c5c2bf01280e2df03cedc999aa5e7be87.tar.xz
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)
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs9
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);