diff options
author | Teravus Ovares | 2009-01-03 03:30:03 +0000 |
---|---|---|
committer | Teravus Ovares | 2009-01-03 03:30:03 +0000 |
commit | e9cef70f892bfbf4aad0e4471a958367766d849a (patch) | |
tree | 397e078977b430526a2f04041e0dfb9a5fb99156 /OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs | |
parent | Split agent updates into two messages: full update and position+camera update... (diff) | |
download | opensim-SC_OLD-e9cef70f892bfbf4aad0e4471a958367766d849a.zip opensim-SC_OLD-e9cef70f892bfbf4aad0e4471a958367766d849a.tar.gz opensim-SC_OLD-e9cef70f892bfbf4aad0e4471a958367766d849a.tar.bz2 opensim-SC_OLD-e9cef70f892bfbf4aad0e4471a958367766d849a.tar.xz |
* Updates the sim stats module. Cleans out some of the rot.
* Adds a prototype web stats module which is disabled by default. It's functional with one report right now, however, the database structure may change, so I don't recommend enabling this to keep actual stats right now. I'll let you know when it's safe.
* Adds Prototype for ajaxy web content
* removed a warning or two.
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs b/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs index a698d41..29cfd99 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs | |||
@@ -603,10 +603,14 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
603 | public void Flush() | 603 | public void Flush() |
604 | { | 604 | { |
605 | m_PacketQueue.Flush(); | 605 | m_PacketQueue.Flush(); |
606 | m_UnackedBytes = (-1 * m_UnackedBytes); | ||
607 | SendPacketStats(); | ||
606 | } | 608 | } |
607 | 609 | ||
608 | public void Clear() | 610 | public void Clear() |
609 | { | 611 | { |
612 | m_UnackedBytes = (-1 * m_UnackedBytes); | ||
613 | SendPacketStats(); | ||
610 | m_NeedAck.Clear(); | 614 | m_NeedAck.Clear(); |
611 | m_PendingAcks.Clear(); | 615 | m_PendingAcks.Clear(); |
612 | m_Sequence += 1000000; | 616 | m_Sequence += 1000000; |