aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/General/Interfaces
diff options
context:
space:
mode:
authorSean Dague2007-07-30 20:08:33 +0000
committerSean Dague2007-07-30 20:08:33 +0000
commita47e2d9ae74f0ea2484ab38156f52605b08f9be2 (patch)
treee4030c1bb38c31cb36ebdc0c0a58ccaba8b4b97a /OpenSim/Framework/General/Interfaces
parent* Raised ping timeout to 150 seconds (diff)
downloadopensim-SC_OLD-a47e2d9ae74f0ea2484ab38156f52605b08f9be2.zip
opensim-SC_OLD-a47e2d9ae74f0ea2484ab38156f52605b08f9be2.tar.gz
opensim-SC_OLD-a47e2d9ae74f0ea2484ab38156f52605b08f9be2.tar.bz2
opensim-SC_OLD-a47e2d9ae74f0ea2484ab38156f52605b08f9be2.tar.xz
added OnDisconnectUser event to required classes
Diffstat (limited to 'OpenSim/Framework/General/Interfaces')
-rw-r--r--OpenSim/Framework/General/Interfaces/IClientAPI.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Framework/General/Interfaces/IClientAPI.cs b/OpenSim/Framework/General/Interfaces/IClientAPI.cs
index 1e2889c..3162e9c 100644
--- a/OpenSim/Framework/General/Interfaces/IClientAPI.cs
+++ b/OpenSim/Framework/General/Interfaces/IClientAPI.cs
@@ -43,6 +43,7 @@ namespace OpenSim.Framework.Interfaces
43 public delegate void LinkObjects(uint parent, List<uint> children); 43 public delegate void LinkObjects(uint parent, List<uint> children);
44 public delegate void RequestMapBlocks(IClientAPI remoteClient, int minX, int minY, int maxX, int maxY); 44 public delegate void RequestMapBlocks(IClientAPI remoteClient, int minX, int minY, int maxX, int maxY);
45 public delegate void TeleportLocationRequest(IClientAPI remoteClient, ulong regionHandle, LLVector3 position, LLVector3 lookAt, uint flags); 45 public delegate void TeleportLocationRequest(IClientAPI remoteClient, ulong regionHandle, LLVector3 position, LLVector3 lookAt, uint flags);
46 public delegate void DisconnectUser();
46 47
47 public delegate void GenericCall(IClientAPI remoteClient); 48 public delegate void GenericCall(IClientAPI remoteClient);
48 public delegate void GenericCall2(); 49 public delegate void GenericCall2();
@@ -97,6 +98,7 @@ namespace OpenSim.Framework.Interfaces
97 event LinkObjects OnLinkObjects; 98 event LinkObjects OnLinkObjects;
98 event RequestMapBlocks OnRequestMapBlocks; 99 event RequestMapBlocks OnRequestMapBlocks;
99 event TeleportLocationRequest OnTeleportLocationRequest; 100 event TeleportLocationRequest OnTeleportLocationRequest;
101 event DisconnectUser OnDisconnectUser;
100 102
101 event GenericCall4 OnDeRezObject; 103 event GenericCall4 OnDeRezObject;
102 event GenericCall OnRegionHandShakeReply; 104 event GenericCall OnRegionHandShakeReply;