| Commit message (Expand) | Author | Age | Files | Lines |
| * | Merge branch 'insp3' into master. | Sadie Powell | 2022-03-11 | 1 | -7/+7 |
| |\ |
|
| | * | Improve chanlog config reading. | Sadie Powell | 2022-03-09 | 1 | -9/+9 |
| * | | Abolish the infernal space before accessibility keywords. | Sadie Powell | 2022-01-25 | 1 | -1/+1 |
| * | | Refactor CoreException and ModuleException. | Sadie Powell | 2022-01-07 | 1 | -1/+1 |
| * | | Mark all module classes as final. | Sadie Powell | 2021-10-01 | 1 | -1/+2 |
| * | | Move channel logic from InspIRCd to the new ChannelManager class. | Sadie Powell | 2021-05-08 | 1 | -1/+1 |
| * | | Migrate collections from insert to emplace. | Sadie Powell | 2021-04-18 | 1 | -1/+1 |
| * | | Switch simple iterator loops to use range-based for loops. | Sadie Powell | 2021-04-07 | 1 | -3/+3 |
| * | | Constify variables within loops. | Sadie Powell | 2021-04-01 | 1 | -1/+1 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2021-03-05 | 1 | -0/+1 |
| |\| |
|
| | * | Update copyright headers. | InspIRCd Robot | 2021-03-05 | 1 | -0/+1 |
| * | | Move iterator_range to the utility directory and renamespace. | Sadie Powell | 2021-03-02 | 1 | -1/+1 |
| * | | Add stdalgo::equal_range and switch more stuff to iterator_range. | Sadie Powell | 2020-11-11 | 1 | -5/+4 |
| * | | Move FilePosition to fileutils.h and use in ConfigTag. | Sadie Powell | 2020-11-03 | 1 | -1/+1 |
| * | | Add stdalgo::iterator_range and switch config tag reading to use it.•••This allows us to use range-based for loops which were not possible
with the previous config tag system.
| Sadie Powell | 2020-10-31 | 1 | -9/+4 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2020-04-11 | 1 | -1/+1 |
| |\| |
|
| | * | Update the module descriptions using mkversion. | Sadie Powell | 2020-04-10 | 1 | -1/+1 |
| * | | Improve storage of module description, flags, and link data. | Sadie Powell | 2020-04-11 | 1 | -5/+5 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2020-01-17 | 1 | -1/+7 |
| |\| |
|
| | * | Update copyright headers. | InspIRCd Robot | 2020-01-11 | 1 | -1/+7 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2019-05-15 | 1 | -2/+2 |
| |\| |
|
| | * | Textual improvements and fixes such as typos, casing, etc. (#1612) | Robby | 2019-04-28 | 1 | -2/+2 |
| * | | LogManager: remove fakederef. | Sadie Powell | 2019-02-07 | 1 | -1/+1 |
| * | | Replace the override macro with the override keyword. | Sadie Powell | 2019-01-25 | 1 | -3/+3 |
| |/ |
|
| * | Make more modules rehash atomically (#1535)•••Have each module validate the values it loads before setting them, so
any errors don't result in partial application of the configs
| linuxdaemon | 2018-12-19 | 1 | -5/+4 |
| * | Implement IRCv3 message tag support.•••Co-authored-by: Attila Molnar <attilamolnar@hush.com>
| Peter Powell | 2018-08-13 | 1 | -1/+2 |
| * | Change type of log messages to MODNAME in several modules | Attila Molnar | 2016-09-12 | 1 | -1/+1 |
| * | Change type of some associative containers to their flat versions, including ... | Attila Molnar | 2014-12-15 | 1 | -1/+1 |
| * | Replace OnRehash() with ReadConfig() that is called on boot, on module load a...•••This eliminates the need for calling OnRehash() in init()
| attilamolnar | 2013-08-30 | 1 | -6/+1 |
| * | Clean up the protocol interface | attilamolnar | 2013-08-25 | 1 | -1/+1 |
| * | Automatically attach modules to events | attilamolnar | 2013-08-04 | 1 | -3/+0 |
| * | Change modules to use the MODNAME constant when logging.•••The majority of modules were logging with their module name as the
log type. There was a few places which were logging to a non-name
type but, with the exception of CONFIG, those messages are so
uncommon that it doesn't make sense to use a seperate type for
them.
| Peter Powell | 2013-08-04 | 1 | -2/+2 |
| * | Remove $Core and $Mod* comments apart from $ModDep. | Peter Powell | 2013-07-04 | 1 | -2/+0 |
| * | Purge the old chanlog code from the module file. | Peter Powell | 2013-05-18 | 1 | -54/+0 |
| * | Tidy up keywords on module methods.•••- 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.
| Peter Powell | 2013-05-15 | 1 | -5/+5 |
| * | Replace some C-isms with C++-isms.•••* 'const char*' to 'const std::string&'.
* snprintf to std::string concatenation.
* Replace duplicated OneOfMatches with InspIRCd::MatchMask.
| Peter Powell | 2013-05-15 | 1 | -4/+3 |
| * | Add LOG_ prefix to the log level enum values. | Peter Powell | 2013-04-12 | 1 | -2/+2 |
| * | Whitespace and empty destructor removal, minor coding style changes | attilamolnar | 2013-04-01 | 1 | -6/+0 |
| * | Dynamically determine the size of the eventlist[] passed to Attach()•••m_sqlauth was attached to I_OnUserDisconnect but didn't provide a handler for it, remove
| attilamolnar | 2012-12-02 | 1 | -1/+1 |
| * | Attach to events and register services in init() | attilamolnar | 2012-12-02 | 1 | -1/+2 |
| * | ServerConfig::ServerName is a std::string, don't call .c_str() on it when pas... | attilamolnar | 2012-11-19 | 1 | -2/+2 |
| * | Remove usage of the deprecated ConfigReader | attilamolnar | 2012-11-12 | 1 | -4/+4 |
| * | m_chanlog Use std::multimap::equal_range for iteratation instead of ::find an... | attilamolnar | 2012-07-11 | 1 | -14/+6 |
| * | Replace copyright headers with headers granting specific authors copyright | Robby- | 2012-04-19 | 1 | -8/+15 |
| * | ...because every now and again, i have to do a massive commit.•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12248 e03df62e-2008-0410-955e-edbf42e46eb7
| brain | 2010-01-11 | 1 | -1/+1 |
| * | Remove dummy API_VERSION from Version constructor•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11887 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-10-17 | 1 | -1/+1 |
| * | Get rid of a bunch of memory-wasting C-style strings•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11796 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-10-03 | 1 | -2/+2 |
| * | Remove InspIRCd* parameters and fields•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11763 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-09-26 | 1 | -4/+3 |
| * | Describe module purpose in /MODULES output•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11757 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-09-22 | 1 | -1/+1 |
| * | ModResult conversion: Change return type of all module functions•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11634 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-09-02 | 1 | -3/+3 |