| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Hide User#host and User#dhost and use accessors to modify them. | 2017-10-28 | 1 | -2/+2 | |
| | | | | | | This removes the need to invalidate the cache after changing a user's hostname. | ||||
| * | Add support for length arguments in getString. | 2017-09-03 | 1 | -2/+1 | |
| | | |||||
| * | Remove <alias:matchcase> and associated code. | 2017-08-13 | 1 | -14/+2 | |
| | | | | | This was never documented and seems pretty useless. | ||||
| * | Add CXX11_OVERRIDE to overridden members that lack it. | 2017-07-12 | 1 | -1/+1 | |
| | | | | | | This fixes a ton of warnings when building on compilers that default to C++11 or newer. | ||||
| * | Rework the example services aliases. | 2016-11-16 | 1 | -3/+8 | |
| | | | | | | | | - Split common stuff into a generic configuration file. - Reserve all nicknames used by services by default. - Exempt all services clients from filtering. - Add missing aliases for services pseudoclients. | ||||
| * | Convert WriteNumeric() calls to pass the parameters of the numeric as method ↵ | 2016-02-25 | 1 | -2/+2 | |
| | | | | | parameters | ||||
| * | Fix some whitespace issues | 2015-12-28 | 1 | -1/+1 | |
| | | |||||
| * | Add support for channel alias prefixes with multiple characters. | 2015-06-03 | 1 | -9/+9 | |
| | | |||||
| * | Convert mods calling the old compat wrapper of ModuleManager::SetPriority() ↵ | 2015-02-15 | 1 | -1/+1 | |
| | | | | | to use the current method, remove wrapper | ||||
| * | Reduce std::string::substr() usage | 2015-01-10 | 1 | -2/+2 | |
| | | | | | substr() returns a new string while erase() and assign() modify the existing one | ||||
| * | Change type of some associative containers to their flat versions, including ↵ | 2014-12-15 | 1 | -1/+1 | |
| | | | | | Extensible storage | ||||
| * | Change allocation of InspIRCd::Parser to be physically part of the object ↵ | 2014-06-13 | 1 | -1/+1 | |
| | | | | | containing it | ||||
| * | Switch to std::string::compare() from substr() in a couple of places | 2014-05-26 | 1 | -5/+5 | |
| | | |||||
| * | m_alias Remove duplicate checks | 2014-01-27 | 1 | -7/+3 | |
| | | |||||
| * | m_alias Use equal_range() when searching for aliases | 2014-01-27 | 1 | -19/+6 | |
| | | |||||
| * | Merge insp20 | 2014-01-21 | 1 | -2/+2 | |
| |\ | |||||
| | * | m_alias Fix out of bounds string access that happened with certain replace ↵ | 2014-01-19 | 1 | -2/+2 | |
| | | | | | | | | | strings | ||||
| * | | Stop null checking pointers that are always valid | 2014-01-09 | 1 | -1/+1 | |
| | | | |||||
| * | | Introduce Server class | 2014-01-05 | 1 | -1/+1 | |
| | | | | | | | | | | | - Replaces std::string server in User - Replaces InspIRCd::ULine() and SilentULine() | ||||
| * | | Add functor that does strict weak ordering based on ↵ | 2014-01-04 | 1 | -16/+16 | |
| | | | | | | | | | national_case_insensitive_map | ||||
| * | | Use WriteNumeric() everywhere we send numerics and include the user's nick ↵ | 2013-11-12 | 1 | -2/+2 | |
| | | | | | | | | | automatically | ||||
| * | | Replace OnRehash() with ReadConfig() that is called on boot, on module load ↵ | 2013-08-30 | 1 | -12/+2 | |
| | | | | | | | | | | | | | and on rehash This eliminates the need for calling OnRehash() in init() | ||||
| * | | Automatically attach modules to events | 2013-08-04 | 1 | -2/+0 | |
| | | | |||||
| * | | Replace hardcoded mode letters, part 3 | 2013-07-19 | 1 | -1/+7 | |
| | | | | | | | | | This changes most remaining User::IsModeSet() calls to use ModeReferences for modes that were created by other modules or the core | ||||
| * | | Remove $Core and $Mod* comments apart from $ModDep. | 2013-07-04 | 1 | -2/+0 | |
| | | | |||||
| * | | Compare to ServerLimits::MaxLine instead of MAXBUF. | 2013-06-06 | 1 | -1/+1 | |
| | | | |||||
| * | | Reserve ServerLimits::MaxLine instead of MAXBUF. | 2013-06-06 | 1 | -1/+1 | |
| | | | |||||
| * | | Merge insp20 | 2013-06-06 | 1 | -1/+1 | |
| |\| | |||||
| | * | Remove unused variables, avoid copies where possible, check empty() instead ↵ | 2013-05-16 | 1 | -1/+1 | |
| | | | | | | | | | | | | | of size() == 0 Most of these were detected by cppcheck | ||||
| * | | Remove #define MAXPARAMETERS and "MAXPARA" 005 token | 2013-06-01 | 1 | -1/+1 | |
| | | | |||||
| * | | Remove OnUserPreNotice and OnUserNotice hooks, add MessageType argument to ↵ | 2013-05-20 | 1 | -2/+2 | |
| | | | | | | | | | | | | | OnUserMessage and OnUserPreMessage All modules (except m_nonotice) that perform filtering on messages have common logic for handling PRIVMSGs and NOTICEs and most of them run the exact same code in both cases | ||||
| * | | Tidy up keywords on module methods. | 2013-05-15 | 1 | -7/+7 | |
| | | | | | | | | | | | - Remove virtual keyword from a ton of methods which don't need it. - Add override keyword to a ton of methods which do need it. | ||||
| * | | Replace IS_AWAY() and IS_OPER() macros with User::IsAway() and User::IsOper() | 2013-04-10 | 1 | -1/+1 | |
| | | | |||||
| * | | Whitespace and empty destructor removal, minor coding style changes | 2013-04-01 | 1 | -8/+1 | |
| |/ | |||||
| * | Dynamically determine the size of the eventlist[] passed to Attach() | 2012-12-02 | 1 | -3/+2 | |
| | | | | | m_sqlauth was attached to I_OnUserDisconnect but didn't provide a handler for it, remove | ||||
| * | Attach to events and register services in init() | 2012-12-02 | 1 | -1/+1 | |
| | | |||||
| * | Remove usage of the deprecated ConfigReader | 2012-11-12 | 1 | -5/+3 | |
| | | |||||
| * | Remove superfluous std::string()s | 2012-10-12 | 1 | -2/+2 | |
| | | |||||
| * | Fix undefined behavior caused by referencing the returned buffer by ↵ | 2012-09-23 | 1 | -1/+2 | |
| | | | | | | | | std::string::c_str() when the object is temporary Thanks to @ChrisTX for pointing this out Fixes #257 reported by @helloall | ||||
| * | Replace copyright headers with headers granting specific authors copyright | 2012-04-19 | 1 | -8/+17 | |
| | | |||||
| * | Fix incorrect default on <alias:channelcommand> | 2010-07-30 | 1 | -2/+2 | |
| | | |||||
| * | PreCommand/PostCommand are local-only hooks | 2010-01-18 | 1 | -1/+1 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12291 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | ...because every now and again, i have to do a massive commit. | 2010-01-11 | 1 | -1/+1 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12248 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | Use ConfigTagList as a faster access method for access to configuration | 2009-10-21 | 1 | -4/+3 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11948 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | Rewrite m_alias DoCommand to do variable substitution in one pass, fixing ↵ | 2009-10-18 | 1 | -44/+45 | |
| | | | | | | | bugs with $i in user-provided text git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11910 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | Fix infinite loop on alias expansion, found by Adam | 2009-10-18 | 1 | -4/+5 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11908 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | More classbase cleanup, hold ConfigTag reference in Autoconnect/Link | 2009-10-18 | 1 | -24/+24 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11906 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | Make classbase and refcountbase uncopyable; expand comments on their ↵ | 2009-10-17 | 1 | -1/+1 | |
| | | | | | | | indended uses git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11888 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | Remove dummy API_VERSION from Version constructor | 2009-10-17 | 1 | -1/+1 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11887 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | Remove InspIRCd* parameters and fields | 2009-09-26 | 1 | -7/+6 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11763 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
