aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/IRCStackModule.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-11-11One more module converted: IRCStackModule.Diva Canto1-19/+35
2010-01-29Revert "Updates all IRegionModules to the new style region modules."Melanie1-22/+10
This reverts commit ec3c31e61e5e540f822891110df9bc978655bbaf.
2010-01-23Updates all IRegionModules to the new style region modules.Revolution1-10/+22
Signed-off-by: Melanie <melanie@t-data.com>
2009-11-12minor: remove mono compiler warningJustin Clark-Casey (justincc)1-2/+2
2009-10-13* Consolidated adding / removing ClientManager IClientAPIs to two places in ↵John Hurliman1-1/+0
Scene * Added some missing implementations of IClientAPI.RemoteEndPoint * Added a ClientManager.Remove(UUID) overload * Removed a reference to a missing project from prebuild.xml
2009-10-13* Rewrote ClientManager to remove Lindenisms from OpenSim core, improve ↵John Hurliman1-1/+1
performance by removing locks, and replace LLUDPClientCollection * Removed the confusing (and LL-specific) shutdowncircuit parameter from IClientAPI.Close() * Updated the LLUDP code to only use ClientManager instead of trying to synchronize ClientManager and m_clients * Remove clients asynchronously since it is a very slow operation (including a 2000ms sleep)
2009-06-29Thank you kindly, Godfrey, for a patch that:Charles Krinke1-1/+2
The new IRCd module causes an error when multiple instances of OpenSim are run on the same machine; since the port number (6666) is hardcoded, the second and subsequent instances crash upon startup because the port is already in use. Attached is a patch which adds a Port specifier to the [IRCd] section of the config file, which defaults to 6666 if not present.
2009-05-31Add copyright headers, formatting cleanup, ignore some generated files.Jeff Ames1-1/+28
2009-05-31Update svn properties.Jeff Ames1-66/+66
2009-05-31Fix IRCd init check for config sectionMike Mazur1-3/+3
The IRCStackModule used Nini.Config.ConfigCollection.Contains() to determine whether the "IRCd" section was present in the config. This ConfigCollection, however, stores an ArrayList of IConfig objects, not strings, so calling Contains("IRCd") always returns false since "IRCd" is a string, not an IConfig object.
2009-05-30* You are likely to be eaten by a grue.Adam Frisby1-6/+15
* Enable with [IRCd] Enabled=true (will listen on port 6666).
2009-05-30* More TweaksAdam Frisby1-1/+8
2009-05-30* More IRCClientView fiddling. Now implements IClientAPI & IClientCore.Adam Frisby1-8/+17
2009-05-30* May partially implement a C# IRCd & IRCClientStack.Adam Frisby1-0/+41