summaryrefslogtreecommitdiff
path: root/src/init.cpp
AgeCommit message (Collapse)Author
2014-02-26Do not setuid/gid down until after modules are loadedAdam
2014-01-01Update copyright to 2014. This was done with:Adam
find include/ src/ lang/ docs/ modules/ *.* Config -exec sed -i 's/-20.. Anope Team/-2014 Anope Team/i' {} \;
2013-12-26If using db_flatfile:fork, don't allow multiple saves to happen at one time ↵Adam
on shutdown/restart wait for any pending saves to finish
2013-12-02Send channel topics on initial burst, sync chanels after db load, and try to ↵Adam
after unserializing persist on
2013-10-05Fix xline uid generation when the one chosen already existsAdam
2013-07-26Rethink jupe/squit thing somewhat. Workaround for the inspircd rsquit/squit messAdam
2013-07-26Fix issues with 'Me' related to previous commitAdam
2013-07-04Fix rehashing via SIGHUP and m_mysqlAdam
2013-05-27Initially attach all modules to all events, and detach them as the events ↵Adam
are run if they are not implemented per module
2013-05-26Get rid of the remaining references in the core to specific services. Move ↵Adam
more stuff out of the core to the proper modules.
2013-05-05The const char* specialization of this no longer worksAdam
2013-05-05That doesn't work either, just don't use references.Adam
find ./ -name '*.cpp' -exec sed -i 's/Get<const Anope::string\&>/Get<const Anope::string>/g' {} \;
2013-05-05Rework the config file reader to be much more flexible and move many ↵Adam
configuration directives to the actual modules they are used in.
2013-04-11Pass new config and the new config reader to the OnReload event, aswell as ↵Adam
call it on module load on modules that hook to it
2013-04-04Move around some of Init() to fork() before initing the socket engine, as ↵Adam
some engines cant survive a fork()
2013-03-01Fix Windows buildAdam
2013-02-24On startup check all object typesAdam
2013-01-09Update copyright to 2013. This was done with:Adam
find include/ src/ lang/ docs/ modules/ *.* Config -exec sed -i 's/-2012 Anope Team/-2013 Anope Team/i' {} \;
2012-12-13Optimize much of the database code and serialize code.Adam
2012-11-30Allow modules to use the encryption modules to encrypt arbitrary things.Adam
Made enc_old depend on enc_md5. Allow not loading any encryption modules if you want to only use an external mechanism. Removed ns_sendpass since it's just a bad idea.
2012-11-22Pretty large coding style cleanup, in source docAdam
cleanup, and allow protocol mods to depend on each other
2012-11-07We no longer have to use the rungroup provided at build time, it is ↵Adam
specified in the config now
2012-10-30Clean up ngircd proto mod slightly, and send sqlines before introducing clientsAdam
2012-10-22Add os_dns, a way to control your DNS zone via servicesAdam
2012-10-09Fix wrong error message when --dbdir has no argumentattilamolnar
2012-10-01Cleanup of all of the protocol modules, rewrote message handling system to ↵Adam
be a bit more C++ ish
2012-09-02Fix WindowsAdam
2012-05-06Split up db/conf/lib/locale install directories, and allow alternate ones to ↵Adam
be specified at runtime
2012-04-23Reworked live SQL support yet againAdam
2012-04-22Fixed ./services --version etc not getting printed when stdout is a ↵Adam
file/pipe/not a tty
2012-03-13Bug #1389 - readd RNG seed in the config and start DNS query ids off on a ↵Adam
random number
2012-03-04fixed the --dir commandline parameterDukePyrolator
2012-02-25Fixed missing #include in init.cppAdam
2012-02-18Use C++11's explicit override feature if availableAdam
2012-02-14Clean up and reorganize our header filesAdam
2012-02-13Removed our RNG and just use the systems, it's not very widely used. Also ↵Adam
made DNS query ids not random as they don't need to be.
2012-01-02Updated Copyright to 2012Adam
2011-12-19Fixed saving databases with MySQL when shut down by SIGINTAdam
2011-11-08WindowsAdam
2011-10-29Fixed the signal/fork/wait mess hopefully once and for all. fork() did not ↵Adam
copy kqueue descriptors on freebsd which caused problems
2011-10-27Ignore sigchld/usr2 sent to the child process after forkAdam
2011-10-22A few minor fixupsAdam
2011-10-22Fixed a race condition with installing signal handlers and forkingAdam
2011-10-20Only fork if we are at termAdam
2011-10-18Reorder some stuff in Init & the ts6 proto mods to fix weirdness from bots ↵Adam
being introduced by 3rd party modules
2011-10-15Fixed up anoperc to work with the newer startup methodAdam
2011-10-14Fork earlier in startup to prevent it messing up threads, if there are anyAdam
2011-10-09Give more verbose messages on startupAdam
2011-09-25Added a new database format and sqlite support. Also moved db-convert to a ↵Adam
module.
2011-09-10Moved signal/thread/mode checking to use signal pipesAdam