aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorMelanie2011-12-10 15:17:34 +0000
committerMelanie2011-12-10 15:17:34 +0000
commit3a91085ac2364c80b53275886c8130a4b1f0e62f (patch)
treea8474ab6c3ca3e46905594e880308b00006e263a /OpenSim/Framework/IClientAPI.cs
parentminor: remove a mono compiler warning (diff)
downloadopensim-SC_OLD-3a91085ac2364c80b53275886c8130a4b1f0e62f.zip
opensim-SC_OLD-3a91085ac2364c80b53275886c8130a4b1f0e62f.tar.gz
opensim-SC_OLD-3a91085ac2364c80b53275886c8130a4b1f0e62f.tar.bz2
opensim-SC_OLD-3a91085ac2364c80b53275886c8130a4b1f0e62f.tar.xz
Implement handler for TeleportCancel inbound packet
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index a070aa6..258b3eb 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -84,6 +84,8 @@ namespace OpenSim.Framework
84 public delegate void TeleportLandmarkRequest( 84 public delegate void TeleportLandmarkRequest(
85 IClientAPI remoteClient, AssetLandmark lm); 85 IClientAPI remoteClient, AssetLandmark lm);
86 86
87 public delegate void TeleportCancel(IClientAPI remoteClient);
88
87 public delegate void DisconnectUser(); 89 public delegate void DisconnectUser();
88 90
89 public delegate void RequestAvatarProperties(IClientAPI remoteClient, UUID avatarID); 91 public delegate void RequestAvatarProperties(IClientAPI remoteClient, UUID avatarID);
@@ -788,6 +790,7 @@ namespace OpenSim.Framework
788 event RequestAvatarProperties OnRequestAvatarProperties; 790 event RequestAvatarProperties OnRequestAvatarProperties;
789 event SetAlwaysRun OnSetAlwaysRun; 791 event SetAlwaysRun OnSetAlwaysRun;
790 event TeleportLandmarkRequest OnTeleportLandmarkRequest; 792 event TeleportLandmarkRequest OnTeleportLandmarkRequest;
793 event TeleportCancel OnTeleportCancel;
791 event DeRezObject OnDeRezObject; 794 event DeRezObject OnDeRezObject;
792 event Action<IClientAPI> OnRegionHandShakeReply; 795 event Action<IClientAPI> OnRegionHandShakeReply;
793 event GenericCall1 OnRequestWearables; 796 event GenericCall1 OnRequestWearables;