summaryrefslogtreecommitdiff
path: root/include
AgeCommit message (Collapse)Author
2012-12-25Allow modules loaded after startup to magically reobtain their database ↵Adam
objects. Fix os_dns for sql(live)
2012-12-19Add a command flag to require that a user is executing the commandAdam
2012-12-19Having these references to bots bugged out older compilers, so simplify this ↵Adam
by just moving pointers to the core
2012-12-15Move DNS handling to a moduleAdam
2012-12-13Optimize much of the database code and serialize code.Adam
2012-12-12Fixed webpanel fail on nondebug buildsAdam
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-29Fix warnings from classes with virtual functions not having virtual destructorsAdam
2012-11-28Rewrite/simplify some of m_httpdAdam
2012-11-26Keep track on what ircds we can svsjoin, add an svspart methodAdam
2012-11-25Restrict the length of kick reasons in cs_kick, cs_ban, and cs_akickAdam
2012-11-25Merge ns_ghost, ns_recover, and ns_release. Fix svskilling users on Unreal.Adam
2012-11-24Make the actual clients into services tooAdam
2012-11-24Helps to name ping rightAdam
2012-11-23Made IRCDProto a ServiceAdam
2012-11-23Change the return type of ircdmessage to void now that we don't use it, add ↵Adam
an ircd message module event, and a few more fixups
2012-11-22Fix compile/pch generationAdam
2012-11-22Pretty large coding style cleanup, in source docAdam
cleanup, and allow protocol mods to depend on each other
2012-11-16Fixed some stuff spotted by Cronus, made db_old convert ACCESS_INVALID ↵Adam
levels to ACCESS_FOUNDER, fix cs_enforce +R from an earlier commit, fixed ChangeModeInternal TS checking when IRCds don't send TS on mode
2012-11-09Add a config option to disable saslAdam
2012-11-07We no longer have to use the rungroup provided at build time, it is ↵Adam
specified in the config now
2012-11-07Give suspend the correct permission in botserv.conf, fix pch buildAdam
2012-11-06Made os_noop more usefulAdam
2012-11-06Use std::tr1::unordered_map for a few of the larger mapsAdam
2012-11-06Windows fixesAdam
2012-11-01Fix pch generationAdam
2012-11-01Fixed quite a bit of dumbness with m_ssl. Had toAdam
modify socketengines to allow polling for write & no read, but is it cleaner now. Made m_httpd able to listen using SSL.
2012-10-31Fix ns_ghost and ns_recover, add nicksev:restoreonghostAdam
2012-10-30Made os_forbid honor nssecureadminsAdam
2012-10-29Made MailThread completely threadsafe, currently theres a race condition ↵Adam
with config reload + sending mail at once
2012-10-29This include is unncessaryAdam
2012-10-27Add a module log typeAdam
2012-10-27Ues timestamp for dns serial not yyyymmddnn.. there are too many problems ↵Adam
with this (restarts, >99 zone updates/day, etc)
2012-10-26Add nickserv:modesonid config option to set what modes users get on identifyAdam
2012-10-26Don't attempt to process any query packets if we aren't explicitly given ↵Adam
permission to bind to a port (we do anyway currently for m_dnsbl to get replies)
2012-10-25This code isn't usedAdam
2012-10-24BIND's forward ability did not work as I expectedAdam
because it will not forward non recursive queries. So, added support for SOA, NS, and AXFR requests.
2012-10-22Cleanup of last few commits/warning fixAdam
2012-10-22Add os_dns, a way to control your DNS zone via servicesAdam
2012-10-21Base has to destruct before Extensible does because objects that destruct ↵DukePyrolator
due to Extensible destructing don't have their references to the already destroyed object for Base invalidated. (fixed for NickAlias and NickCore)
2012-10-18Base has to destruct before Extensible does because objects that destruct ↵Adam
due to Extensible destructing don't have their references to the already destroyed object for Base invalidated
2012-10-14Better clarify signon vs timestamp and allow updating users timestamp to an ↵Adam
ircd given value from NICK
2012-10-13Add m_sql_operAdam
2012-10-13Simplify the db_sql_live code since this isn't actually necessary. Fixes a ↵Adam
problem internally ovwrwriting data on objects that we have modified and are queued because of assigning something to a serialize_obj reference
2012-10-09Cleanup ok if modules with pending identify requests are unloadedAdam
2012-10-08Fix fantasy !help & give it its own help header, not ChanServ'sAdam
2012-10-08Made fantasy commands configurableAdam
2012-10-07Remove the asynchronous identifing hack and replace it with something ↵Adam
better. Fixes m_*_authentication only being able to properly work when people identify normally using nickserv/identify
2012-10-07Add a config option for server side topic locksattilamolnar
2012-10-05Add an event for when nick or channel options are setAdam