aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
diff options
context:
space:
mode:
authorJohn Hurliman2009-11-05 12:01:40 -0800
committerJohn Hurliman2009-11-05 12:01:40 -0800
commite6d7303b296468a06ada761706e25d49587b308f (patch)
tree3739865dcf478eaadf9b75a58a9e9615b64c6afa /OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
parentChange the permissions module to use the friend list cache already in the (diff)
downloadopensim-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 '')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs4
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