diff options
author | Teravus Ovares | 2008-12-21 00:11:54 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-12-21 00:11:54 +0000 |
commit | 119104e35bc02e15a1ce08175ca6408fb8e9f7be (patch) | |
tree | 1f206e4380b559b856f7d03da79b3aff9f5b9712 /OpenSim/Framework/IClientAPI.cs | |
parent | Slowing things down even more on TPs, to see if that helps the European folks... (diff) | |
download | opensim-SC_OLD-119104e35bc02e15a1ce08175ca6408fb8e9f7be.zip opensim-SC_OLD-119104e35bc02e15a1ce08175ca6408fb8e9f7be.tar.gz opensim-SC_OLD-119104e35bc02e15a1ce08175ca6408fb8e9f7be.tar.bz2 opensim-SC_OLD-119104e35bc02e15a1ce08175ca6408fb8e9f7be.tar.xz |
* Re-implement packet tracking in IClientAPI so we can see what's going on in the client network in the simstats manager. This makes packets in per second, packets out per second, and unacked bytes work again in the simulator stats section.
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index a9c05f6..e3163d7 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -47,9 +47,6 @@ namespace OpenSim.Framework | |||
47 | 47 | ||
48 | public delegate void ImprovedInstantMessage(IClientAPI remoteclient, GridInstantMessage im); | 48 | public delegate void ImprovedInstantMessage(IClientAPI remoteclient, GridInstantMessage im); |
49 | 49 | ||
50 | // This shouldn't be cut down... | ||
51 | // especially if we're ever going to implement groups, presence, estate message dialogs... | ||
52 | |||
53 | public delegate void RezObject(IClientAPI remoteClient, UUID itemID, Vector3 RayEnd, Vector3 RayStart, | 50 | public delegate void RezObject(IClientAPI remoteClient, UUID itemID, Vector3 RayEnd, Vector3 RayStart, |
54 | UUID RayTargetID, byte BypassRayCast, bool RayEndIsIntersection, | 51 | UUID RayTargetID, byte BypassRayCast, bool RayEndIsIntersection, |
55 | bool RezSelected, bool RemoveItem, UUID fromTaskID); | 52 | bool RezSelected, bool RemoveItem, UUID fromTaskID); |
@@ -63,6 +60,8 @@ namespace OpenSim.Framework | |||
63 | float height, float seconds, byte size, byte action, float north, float west, float south, float east, | 60 | float height, float seconds, byte size, byte action, float north, float west, float south, float east, |
64 | UUID agentId); | 61 | UUID agentId); |
65 | 62 | ||
63 | public delegate void NetworkStats(int inPackets, int outPackets, int unAckedBytes); | ||
64 | |||
66 | public delegate void SetAppearance(byte[] texture, List<byte> visualParamList); | 65 | public delegate void SetAppearance(byte[] texture, List<byte> visualParamList); |
67 | 66 | ||
68 | public delegate void StartAnim(IClientAPI remoteClient, UUID animID); | 67 | public delegate void StartAnim(IClientAPI remoteClient, UUID animID); |
@@ -722,6 +721,7 @@ namespace OpenSim.Framework | |||
722 | 721 | ||
723 | event StartLure OnStartLure; | 722 | event StartLure OnStartLure; |
724 | event TeleportLureRequest OnTeleportLureRequest; | 723 | event TeleportLureRequest OnTeleportLureRequest; |
724 | event NetworkStats OnNetworkStatsUpdate; | ||
725 | 725 | ||
726 | // void ActivateGesture(UUID assetId, UUID gestureId); | 726 | // void ActivateGesture(UUID assetId, UUID gestureId); |
727 | 727 | ||