aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs10
1 files changed, 9 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 222bae0..82b5968 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -93,6 +93,8 @@ namespace OpenSim.Framework
93 93
94 public delegate void SetAlwaysRun(IClientAPI remoteClient, bool SetAlwaysRun); 94 public delegate void SetAlwaysRun(IClientAPI remoteClient, bool SetAlwaysRun);
95 95
96 public delegate void GenericCall1(IClientAPI remoteClient);
97
96 public delegate void GenericCall2(); 98 public delegate void GenericCall2();
97 99
98 // really don't want to be passing packets in these events, so this is very temporary. 100 // really don't want to be passing packets in these events, so this is very temporary.
@@ -828,6 +830,11 @@ namespace OpenSim.Framework
828 /// </value> 830 /// </value>
829 bool IsActive { get; set; } 831 bool IsActive { get; set; }
830 832
833 /// <value>
834 /// Determines whether the client is logging out or not.
835 /// </value>
836 bool IsLoggingOut { get; set; }
837
831 bool SendLogoutPacketWhenClosing { set; } 838 bool SendLogoutPacketWhenClosing { set; }
832 839
833 // [Obsolete("LLClientView Specific - Circuits are unique to LLClientView")] 840 // [Obsolete("LLClientView Specific - Circuits are unique to LLClientView")]
@@ -873,7 +880,7 @@ namespace OpenSim.Framework
873 event DeRezObject OnDeRezObject; 880 event DeRezObject OnDeRezObject;
874 event Action<IClientAPI> OnRegionHandShakeReply; 881 event Action<IClientAPI> OnRegionHandShakeReply;
875 event GenericCall2 OnRequestWearables; 882 event GenericCall2 OnRequestWearables;
876 event GenericCall2 OnCompleteMovementToRegion; 883 event GenericCall1 OnCompleteMovementToRegion;
877 event UpdateAgent OnAgentUpdate; 884 event UpdateAgent OnAgentUpdate;
878 event AgentRequestSit OnAgentRequestSit; 885 event AgentRequestSit OnAgentRequestSit;
879 event AgentSit OnAgentSit; 886 event AgentSit OnAgentSit;
@@ -1471,5 +1478,6 @@ namespace OpenSim.Framework
1471 1478
1472 void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID,int amt); 1479 void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID,int amt);
1473 1480
1481 void SendChangeUserRights(UUID agentID, UUID friendID, int rights);
1474 } 1482 }
1475} 1483}