summaryrefslogtreecommitdiff
path: root/modules/extra/db_mysql.cpp
AgeCommit message (Collapse)Author
2011-05-16Use module type to determine what type each module is instead of its ↵Adam
location in the configuration file.
2011-05-16Fixed up the MySQL Query code and finished some command code I forgot earlierAdam
2011-05-16Moved the core pseudo clients out into their own modulesAdam
2011-05-01Fixed sometimes not removing nick masks from the access list when the group ↵Adam
is dropped
2011-04-28Added a unique key for the anope_cs_mlock tableAdam
2011-04-23Two small SQL fixesAdam
2011-03-14Fixed compileAdam
2011-03-14Rewrote some of the opertype system, added os_loginAdam
2011-03-11_()ify Command::SetDescAdam
2011-03-09Store mlock in the databases and removed some unused functions from misc.cppAdam
2011-03-06Change the mode name code to use Flags names in preparation for extban supportAdam
2011-03-05Removed nickrequests, instead have unconfirmed registrations. Also made ↵Adam
ns_resetpass allow remote-id to get past things such as kill immed.
2011-02-18Update SQL when a nick is deletedAdam
2011-02-11Made the help command description code more saneAdam
2011-02-04Merge 032c30dd5dc4Adam
2011-02-04Moved the language strings which are only used onceAdam
out of the core and into the modules that use them.
2011-01-28Added patricia_tree::iteratorAdam
2011-01-24Fixed the order queries are done during sqlsync to make the new foreign keys ↵Adam
happy
2011-01-24Fixed some SQL queriesAdam
2011-01-08Made the Flag class able to convert flags to strings and backAdam
2010-12-27Load session exceptions on start when using SQLAdam
2010-12-27Bug #1220 - Fixed an event in /hs activate and /ms delAdam
2010-12-24Fixed Windows buildAdam
2010-12-15Bug #1211 - Fixed loading and saving anope_os_sxlinesAdam
2010-12-12Allowing adding hostmasks to channel access listsAdam
2010-12-12The rest of the earlier command changesAdam
2010-12-12Added /bs set msgAdam
2010-12-12Send replies from fantasy commands back to the channel, this will be ↵Adam
expanded on later
2010-12-12Added cs_entrymsgAdam
2010-12-12Allow the patricia tree to store non-pointersAdam
2010-12-12Added cs_mode, rewrote the old list mode code, and added CIDR supportAdam
2010-12-12Removed and deprecated /cs set mlock, removed /cs clear, removed /os ↵Adam
clearmodes, removed /cs akick (un)stick, added /cs clearusers
2010-12-12Switched the system for storing users, channels, and sesions to a patriciaAdam
tree from STL's unordered_map, which was giving horrible performance.
2010-12-12Added /ms ignoreAdam
2010-11-18Fixed some mysql queriesAdam
2010-11-07Fixed the OnPostCommand event overload in db_mysqlAdam
2010-10-31Fixed bug #1197 - Store vhosts in MySQLAdam
2010-10-30Made gettext work on most OSs. Tested on Debian, FreeBSD, Gentoo, and Windows.Adam
Added a search path option to the Config script for cmake to use when finding libraries for modules or for gettext. Fixed m_mysql and m_ssl to work under Windows, made the Windows Config program remember the last used options, and fixed Windows release builds.
2010-10-27Do not store memo number in memo structs, fixes some bugs with deleting memosAdam
2010-10-12Made the SQL tables use foriegn keys and references to each other, removed ↵Adam
many now unnecessary queries from db_mysql
2010-10-11Fixed Windows buildAdam
2010-10-09Fixed bug #1196 - truncate anope_extra before flushing data into it againAdam
2010-10-05Fixed two types in db_mysqlAdam
2010-10-04Attempt to write back the old mlock to the databases if we try and fail to ↵Adam
connect to the uplink. Because we may not know modes until after we are synced we could accidentally nuke all of the mlocks
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-09-26Changed the language system to use gettextAdam
2010-09-10Added Anope::CurTime to keep us from calling time() everywhereAdam
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-21Made Anope keep track of channels its clients are in if it splits from its ↵Adam
uplink, then burst them back to its uplink once connection is reestablished. Also made Anope use TS enforcement to change persistant channels creation time to the time they were registered.