Update svn properties, add copyright headers, minor formatting cleanup.

This commit is contained in:
Jeff Ames
2009-03-01 09:15:31 +00:00
parent 23a7af4538
commit 808e4a847a
9 changed files with 361 additions and 234 deletions

View File

@@ -260,7 +260,7 @@ namespace OpenSim.Client.MXP.PacketHandler
}
string[] nameParts=participantName.Split(' ');
if(nameParts.Length!=2)
if (nameParts.Length != 2)
{
m_log.Info("Login failed as user name is not formed of first and last name separated by space: " + participantName);
return false;
@@ -370,7 +370,6 @@ namespace OpenSim.Client.MXP.PacketHandler
foreach (MXPClientView clientView in Clients)
{
int messagesProcessedCount = 0;
Session session = clientView.Session;
@@ -380,7 +379,6 @@ namespace OpenSim.Client.MXP.PacketHandler
if (message.GetType() == typeof(LeaveRequestMessage))
{
LeaveResponseMessage leaveResponseMessage = (LeaveResponseMessage)MessageFactory.Current.ReserveMessage(
typeof(LeaveResponseMessage));
@@ -400,7 +398,6 @@ namespace OpenSim.Client.MXP.PacketHandler
}
if (message.GetType() == typeof(LeaveResponseMessage))
{
LeaveResponseMessage leaveResponseMessage = (LeaveResponseMessage)message;
m_log.Info("[MXP ClientStack] Session leave response: " + session.SessionId + " (" + (session.IsIncoming ? "from" : "to") + " " + session.RemoteEndPoint.Address + ":" + session.RemoteEndPoint.Port + ")");