Update svn properties, formatting cleanup.

This commit is contained in:
Jeff Ames
2008-08-19 02:59:27 +00:00
parent 6d2e1ad6ba
commit bea7d4d81a
17 changed files with 78 additions and 177 deletions

View File

@@ -457,7 +457,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
public void Close(bool shutdownCircuit)
{
m_clientPingTimer.Enabled = false;
m_log.DebugFormat(
"[CLIENT]: Close has been called with shutdownCircuit = {0} on scene {1}",
shutdownCircuit, m_scene.RegionInfo.RegionName);
@@ -658,15 +658,15 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|| (m_probesWithNoIngressPackets > 90 && m_clientBlocked))
{
m_clientPingTimer.Enabled = false;
m_log.WarnFormat(
"[CLIENT]: Client for agent {0} {1} has stopped responding to pings. Closing connection",
Name, AgentId);
if (OnConnectionClosed != null)
{
OnConnectionClosed(this);
}
}
}
else
{

View File

@@ -168,7 +168,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
ThrottleCheck(ref TextureThrottle, ref TextureOutgoingPacketQueue, item);
break;
case ThrottleOutPacketType.Task:
if((item.throttleType & ThrottleOutPacketType.LowPriority) != 0)
if ((item.throttleType & ThrottleOutPacketType.LowPriority) != 0)
ThrottleCheck(ref TaskThrottle, ref TaskLowpriorityPacketQueue, item);
else
ThrottleCheck(ref TaskThrottle, ref TaskOutgoingPacketQueue, item);