summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2010-10-02Made entry_match work once againAdam
2010-10-02Made ChanServ optionalAdam
2010-10-02Made OperServ and Global optionalAdam
2010-10-02Made MemoServ optionalAdam
2010-10-01Fixed pipe and win32 socketengine buildsAdam
2010-10-01Rewrote some of the socket code to allow m_ssl to be a service.Adam
This allows modules (xmlrpc) to create and accept SSL connections. Also fixed unloading m_mysql at certain times and made the threading engine always work correctly on Windows.
2010-10-01Merge branch '1.9' of anope.git.sf.net:/gitroot/anope/anope into 1.9Adam
2010-10-01Revert "Do not use new/delete to allocate modules, allows modules to always ↵Adam
destruct properly and automatically" This does not work as expected, it causes objects allocated by modules to be freed by the operating system when the module is unloaded, giving no chance to the module to deallocate it itself. This reverts commit 05e6815d912f0418f6da25a2106dd718796f02fa.
2010-09-29Allow OnPreConnect to kill users correctly and made session/xline exempt ↵Adam
users not bypass the OnConnect event
2010-09-27Cleaned up some unused code, moved handling of user modes around so we dont ↵Adam
get log messages about user modes when users connect, and fixed tracking some umodes on Unreal
2010-09-26Partial fix for finding gettext with CMake, still doesn't fix the lack of ↵Naram Qashat
finding non-standard paths though.
2010-09-26Added a short docs/LANGUAGES file explaining how to add translations for the ↵Adam
core and modules, updated TODO, and fixed a few small bugs
2010-09-26Changed the language system to use gettextAdam
2010-09-22Do not use new/delete to allocate modules, allows modules to always destruct ↵Adam
properly and automatically
2010-09-21Fixed some problems with cycling logfilesAdam
2010-09-19Fixed log messages from when a user quits or gets killedAdam
2010-09-19Fixed joining chanserv enforcers to unregistered channelsAdam
2010-09-18DNSSocket doesn't need to save the server addr anymoreAdam
2010-09-18Fixed bug #1191lethality
2010-09-18Fixed some minor punctuation and logginglethality
2010-09-17Rejig of some of the socket stuff. Fixed marking sockets as nonblocking on ↵Adam
Windows. Added in a LastError function to keep having to use strerror/GetLastError everywhere.
2010-09-17Connect using nonblocking socketsAdam
2010-09-17Fixed bug #1190 and prevent m_dnsbl from akilling a user multiple times if ↵Adam
they are in multiple blacklists
2010-09-16Fixed connecting back to the nameserver if we lose connection, and detecting ↵Adam
the nameserver
2010-09-16Fixed many bugs and crashesAdam
2010-09-16Fixed Anope::CurTime to really work, and made ChanServ timers allow using ↵Adam
the channels botserv bot instead of only ChanServ
2010-09-15Rewrote all of the topic code, fixes a few topic related problems on some ↵Adam
older IRCds
2010-09-14Give DNS requests an error when their creator is being unloaded instead of ↵Adam
just deleting them, and fixed a compile warning
2010-09-14Cleanup DNS requests when modules are unloaded, fixes unloading m_dnsbl ↵Adam
during the middle of queries
2010-09-12Removed the --log command line option because its no longer necessary, and ↵Adam
updated example.conf
2010-09-11Allow identifying to other accounts using /nickserv id account passAdam
2010-09-10Added Anope::CurTime to keep us from calling time() everywhereAdam
2010-09-10Fixed bug #1187 - Fixed releasing enforcer clients on TS6 IRCdsAdam
2010-09-09Added an asynchronous DNS system and m_dnsbl, which checks clients against ↵Adam
DNS blacklists. Rewrote internal handling of IPs, we now properly support users using IPv6. Fixed a few problems with the UnrealIRCd protocol module.
2010-09-01Only look up session exceptions if the user exceeds the session limit, ↵Adam
really send akills for exceeding session limits, and fixed os akill del to really work
2010-08-29Redo some of the sighandling code, and made anoperc rehash actually work.Adam
2010-08-28Removed a duplicate log message when a user changes nickAdam
2010-08-28Burst back our juped servers if we disconnectAdam
2010-08-28Properly store our clients internal channel status's and burst them if needed.Adam
Also made Flag::HasFlag use test() instead of operator[] to catch errors, and fixed an out of bounds access to a Flags bitset causing crashes on some systems.
2010-08-28Changed Channel's BanData C-style linked list to std::list, got rid of ↵Naram Qashat
shadowed variables in channels.cpp.
2010-08-28Clean up some of the old now unused IRCDVar struct vars, and made the ↵Adam
logchan bots join if the IRCd requires them to
2010-08-28Do not log RAWIO messages to services log channels, added a config option on ↵Adam
whether or not to join bots to the log channels, and fixed two log messages in ns_identify
2010-08-27Removed options:keeplogs because its no longer usedAdam
2010-08-27Removed some problematic IsRecognized checks in ms_cancel and ms_check, and ↵Adam
fixed a variable name in logger.cpp to make clang happy
2010-08-27Added a new logging systemAdam
2010-08-27Added an Anope::string::is_pos_number_only function to use everywhere we ↵Adam
convertTo unsigned values, and fixed the mail delay error message to give the correct time.
2010-08-24Internally ULine our server, and fixed a user count check for botserv when ↵Adam
setting -P on channels
2010-08-22Made Config ask what version of Visual Studio you are using so cmake can ↵Adam
generate the correct files
2010-08-22Use pipe() instead of pipe2() - some systems dont have pipe2()Adam
2010-08-22Added a classbase for the major classes, makes dynamic_reference ↵Adam
invalidation really work. This also cleans up a bit of the code in the modestacker.