* IRC ChatModule extension should now be more stable.

afrisby
Adam Frisby 2007-10-19 23:56:51 +00:00
parent 4f1abe3e76
commit 2afecae39c
1 changed files with 16 additions and 5 deletions

View File

@ -188,7 +188,8 @@ namespace OpenSim.Region.Environment.Modules
});
}
}
}
}
Thread.Sleep(50);
}
}
@ -245,10 +246,20 @@ namespace OpenSim.Region.Environment.Modules
m_log.Verbose("CHAT", fromName + " (" + e.Channel + " @ " + scene.RegionInfo.RegionName + ") " + typeName + ": " + e.Message);
if (connected)
{
m_ircWriter.WriteLine("PRIVMSG " + m_channel + " :" + "<" + fromName + " in " + scene.RegionInfo.RegionName + ">: " +
e.Message);
m_ircWriter.Flush();
{
try
{
m_ircWriter.WriteLine("PRIVMSG " + m_channel + " :" + "<" + fromName + " in " + scene.RegionInfo.RegionName + ">: " +
e.Message);
m_ircWriter.Flush();
}
catch (IOException)
{
m_log.Error("IRC","Disconnected from IRC server.");
listener.Abort();
pingSender.Abort();
connected = false;
}
}
if (e.Channel == 0)