aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorTeravus Ovares2008-01-16 03:33:46 +0000
committerTeravus Ovares2008-01-16 03:33:46 +0000
commit5958192398bcb48fa5ec4dfd2b2485f798e525a6 (patch)
treef52479b2229827289f247aa6f725315994e0a6bb /OpenSim/Framework/IClientAPI.cs
parent* Refactored the SimStatsReporter to reuse the same packet and packet blocks ... (diff)
downloadopensim-SC_OLD-5958192398bcb48fa5ec4dfd2b2485f798e525a6.zip
opensim-SC_OLD-5958192398bcb48fa5ec4dfd2b2485f798e525a6.tar.gz
opensim-SC_OLD-5958192398bcb48fa5ec4dfd2b2485f798e525a6.tar.bz2
opensim-SC_OLD-5958192398bcb48fa5ec4dfd2b2485f798e525a6.tar.xz
* Added Packets In/s, Packets Out/s and Current un_acked Packets to the SimStatsReporter
* This doesn't take into account the throttler, it just assumes the throttle limit isn't reached.
Diffstat (limited to '')
-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 039526b..046688f 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -398,6 +398,8 @@ namespace OpenSim.Framework
398 public delegate void FriendActionDelegate(IClientAPI remoteClient,LLUUID agentID,LLUUID transactionID,List<LLUUID> callingCardFolders); 398 public delegate void FriendActionDelegate(IClientAPI remoteClient,LLUUID agentID,LLUUID transactionID,List<LLUUID> callingCardFolders);
399 399
400 public delegate void FriendshipTermination(IClientAPI remoteClient,LLUUID agentID, LLUUID ExID); 400 public delegate void FriendshipTermination(IClientAPI remoteClient,LLUUID agentID, LLUUID ExID);
401
402 public delegate void PacketStats(int inPackets, int outPackets, int unAckedBytes);
401 403
402 404
403 405
@@ -501,6 +503,7 @@ namespace OpenSim.Framework
501 event FriendActionDelegate OnApproveFriendRequest; 503 event FriendActionDelegate OnApproveFriendRequest;
502 event FriendActionDelegate OnDenyFriendRequest; 504 event FriendActionDelegate OnDenyFriendRequest;
503 event FriendshipTermination OnTerminateFriendship; 505 event FriendshipTermination OnTerminateFriendship;
506 event PacketStats OnPacketStats;
504 507
505 508
506 LLVector3 StartPos { get; set; } 509 LLVector3 StartPos { get; set; }