diff options
author | John Hurliman | 2009-11-05 12:01:40 -0800 |
---|---|---|
committer | John Hurliman | 2009-11-05 12:01:40 -0800 |
commit | e6d7303b296468a06ada761706e25d49587b308f (patch) | |
tree | 3739865dcf478eaadf9b75a58a9e9615b64c6afa /OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |
parent | Change the permissions module to use the friend list cache already in the (diff) | |
download | opensim-SC_OLD-e6d7303b296468a06ada761706e25d49587b308f.zip opensim-SC_OLD-e6d7303b296468a06ada761706e25d49587b308f.tar.gz opensim-SC_OLD-e6d7303b296468a06ada761706e25d49587b308f.tar.bz2 opensim-SC_OLD-e6d7303b296468a06ada761706e25d49587b308f.tar.xz |
Applying #4332, optional packet statistics logging
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index 34cad7b..101a44b 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -4905,6 +4905,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
4905 | /// <param name="throttlePacketType">Throttling category for the packet</param> | 4905 | /// <param name="throttlePacketType">Throttling category for the packet</param> |
4906 | protected void OutPacket(Packet packet, ThrottleOutPacketType throttlePacketType) | 4906 | protected void OutPacket(Packet packet, ThrottleOutPacketType throttlePacketType) |
4907 | { | 4907 | { |
4908 | #region BinaryStats | ||
4909 | LLUDPServer.LogPacketHeader(false, m_circuitCode, 0, packet.Type, (ushort)packet.Length); | ||
4910 | #endregion BinaryStats | ||
4911 | |||
4908 | m_udpServer.SendPacket(m_udpClient, packet, throttlePacketType, true); | 4912 | m_udpServer.SendPacket(m_udpClient, packet, throttlePacketType, true); |
4909 | } | 4913 | } |
4910 | 4914 | ||