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.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index a835598..b1f62f1 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -254,8 +254,6 @@ namespace OpenSim.Framework
254 254
255 public delegate void FriendshipTermination(IClientAPI remoteClient, LLUUID agentID, LLUUID ExID); 255 public delegate void FriendshipTermination(IClientAPI remoteClient, LLUUID agentID, LLUUID ExID);
256 256
257 public delegate void PacketStats(int inPackets, int outPackets, int unAckedBytes);
258
259 public delegate void MoneyTransferRequest(LLUUID sourceID, LLUUID destID, int amount, int transactionType, string description); 257 public delegate void MoneyTransferRequest(LLUUID sourceID, LLUUID destID, int amount, int transactionType, string description);
260 258
261 public delegate void ParcelBuy(LLUUID agentId, LLUUID groupId, bool final, bool groupOwned, 259 public delegate void ParcelBuy(LLUUID agentId, LLUUID groupId, bool final, bool groupOwned,
@@ -324,6 +322,8 @@ namespace OpenSim.Framework
324 322
325 string LastName { get; } 323 string LastName { get; }
326 324
325 IScene Scene { get; }
326
327 // [Obsolete("LLClientView Specific - Replace with ???")] 327 // [Obsolete("LLClientView Specific - Replace with ???")]
328 int NextAnimationSequenceNumber { get; } 328 int NextAnimationSequenceNumber { get; }
329 329
@@ -460,7 +460,6 @@ namespace OpenSim.Framework
460 event FriendActionDelegate OnApproveFriendRequest; 460 event FriendActionDelegate OnApproveFriendRequest;
461 event FriendActionDelegate OnDenyFriendRequest; 461 event FriendActionDelegate OnDenyFriendRequest;
462 event FriendshipTermination OnTerminateFriendship; 462 event FriendshipTermination OnTerminateFriendship;
463 event PacketStats OnPacketStats;
464 463
465 // Financial packets 464 // Financial packets
466 event MoneyTransferRequest OnMoneyTransferRequest; 465 event MoneyTransferRequest OnMoneyTransferRequest;
@@ -526,7 +525,6 @@ namespace OpenSim.Framework
526 525
527 void SendLayerData(float[] map); 526 void SendLayerData(float[] map);
528 void SendLayerData(int px, int py, float[] map); 527 void SendLayerData(int px, int py, float[] map);
529 void SendLayerData(int px, int py, float[] map, bool track);
530 528
531 void MoveAgentIntoRegion(RegionInfo regInfo, LLVector3 pos, LLVector3 look); 529 void MoveAgentIntoRegion(RegionInfo regInfo, LLVector3 pos, LLVector3 look);
532 void InformClientOfNeighbour(ulong neighbourHandle, IPEndPoint neighbourExternalEndPoint); 530 void InformClientOfNeighbour(ulong neighbourHandle, IPEndPoint neighbourExternalEndPoint);
@@ -561,13 +559,14 @@ namespace OpenSim.Framework
561 LLVector3 pos, LLVector3 vel, LLVector3 acc, LLQuaternion rotation, LLVector3 rvel, 559 LLVector3 pos, LLVector3 vel, LLVector3 acc, LLQuaternion rotation, LLVector3 rvel,
562 uint flags, 560 uint flags,
563 LLUUID objectID, LLUUID ownerID, string text, byte[] color, uint parentID, byte[] particleSystem, 561 LLUUID objectID, LLUUID ownerID, string text, byte[] color, uint parentID, byte[] particleSystem,
564 byte clickAction, byte[] textureanim, bool attachment, uint AttachPoint, LLUUID AssetId, LLUUID SoundId, double SoundVolume, byte SoundFlags, double SoundRadius, bool track); 562 byte clickAction, byte[] textureanim, bool attachment, uint AttachPoint, LLUUID AssetId, LLUUID SoundId, double SoundVolume, byte SoundFlags, double SoundRadius);
565 563
566 564
567 void SendPrimitiveToClient(ulong regionHandle, ushort timeDilation, uint localID, PrimitiveBaseShape primShape, 565 void SendPrimitiveToClient(ulong regionHandle, ushort timeDilation, uint localID, PrimitiveBaseShape primShape,
568 LLVector3 pos, LLVector3 vel, LLVector3 acc, LLQuaternion rotation, LLVector3 rvel, 566 LLVector3 pos, LLVector3 vel, LLVector3 acc, LLQuaternion rotation, LLVector3 rvel,
569 uint flags, LLUUID objectID, LLUUID ownerID, string text, byte[] color, 567 uint flags, LLUUID objectID, LLUUID ownerID, string text, byte[] color,
570 uint parentID, byte[] particleSystem, byte clickAction, bool track); 568 uint parentID, byte[] particleSystem, byte clickAction);
569
571 570
572 void SendPrimTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, LLVector3 position, 571 void SendPrimTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, LLVector3 position,
573 LLQuaternion rotation, LLVector3 velocity, LLVector3 rotationalvelocity, byte state, LLUUID AssetId); 572 LLQuaternion rotation, LLVector3 velocity, LLVector3 rotationalvelocity, byte state, LLUUID AssetId);
@@ -703,6 +702,7 @@ namespace OpenSim.Framework
703 702
704 void SetDebug(int newDebug); 703 void SetDebug(int newDebug);
705 void InPacket(Packet NewPack); 704 void InPacket(Packet NewPack);
705 void ProcessInPacket(Packet NewPack);
706 void Close(bool ShutdownCircuit); 706 void Close(bool ShutdownCircuit);
707 void Kick(string message); 707 void Kick(string message);
708 void Stop(); 708 void Stop();