| Commit message (Expand) | Author | Age | Files | Lines |
| * | Update copyright headers. | InspIRCd Robot | 2024-06-07 | 1 | -1/+1 |
| * | Use ERR_RESTRICTED instead of ERR_BANNEDFROMCHAN in restrictchans.•••This shouldn't be hidden by clients.
Closes #2084.
| Sadie Powell | 2024-03-24 | 1 | -1/+1 |
| * | Avoid copying shared_ptr<ConfigTag> when not necessary. | Sadie Powell | 2023-01-10 | 1 | -1/+1 |
| * | Merge branch 'insp3' into master. | Sadie Powell | 2023-01-01 | 1 | -1/+1 |
| |\ |
|
| | * | Update copyright headers. | InspIRCd Robot | 2022-12-30 | 1 | -1/+1 |
| * | | Modernize various minor legacy C++isms. | Sadie Powell | 2022-07-30 | 1 | -2/+2 |
| * | | Add the new account system.•••This still relies on the old extensibles for now but we can change
that later.
| Sadie Powell | 2022-05-14 | 1 | -2/+3 |
| * | | Abolish the infernal space before accessibility keywords. | Sadie Powell | 2022-01-25 | 1 | -2/+2 |
| * | | 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 |
| * | | Fire OnUserPreJoin regardless of whether the join is an override. | Sadie Powell | 2021-05-23 | 1 | -2/+2 |
| * | | Constify variables within loops. | Sadie Powell | 2021-04-01 | 1 | -1/+1 |
| * | | Pascalize Get in extension item classes. | Sadie Powell | 2021-03-17 | 1 | -1/+1 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2021-03-05 | 1 | -1/+1 |
| |\| |
|
| | * | Update copyright headers. | InspIRCd Robot | 2021-03-05 | 1 | -1/+1 |
| * | | Move FilePosition to fileutils.h and use in ConfigTag. | Sadie Powell | 2020-11-03 | 1 | -1/+1 |
| * | | Convert ConfigTag from reference<> to std::shared_ptr<>. | Sadie Powell | 2020-10-31 | 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 | -4/+3 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2020-05-05 | 1 | -1/+1 |
| |\| |
|
| | * | Update copyright headers. | InspIRCd Robot | 2020-04-24 | 1 | -1/+1 |
| * | | 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/+6 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2020-04-09 | 1 | -0/+3 |
| |\| |
|
| | * | Send ERR_BANNEDFROMCHAN when a user can't create a restricted channel.•••Closes #1772.
| Sadie Powell | 2020-04-05 | 1 | -0/+3 |
| * | | Use C++11 inline initialisation for class members. | Sadie Powell | 2020-02-06 | 1 | -6/+1 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2020-01-17 | 1 | -2/+5 |
| |\| |
|
| | * | Update copyright headers. | InspIRCd Robot | 2020-01-11 | 1 | -2/+5 |
| * | | Replace the override macro with the override keyword. | Sadie Powell | 2019-01-25 | 1 | -3/+3 |
| |/ |
|
| * | Merge m_restrictchans and m_regonlycreate due to converging functionality (#1... | linuxdaemon | 2019-01-04 | 1 | -11/+34 |
| * | 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/+10 |
| * | Convert WriteNumeric() calls to pass the parameters of the numeric as method ... | Attila Molnar | 2016-02-25 | 1 | -1/+1 |
| * | Change type of some associative containers to their flat versions, including ... | Attila Molnar | 2014-12-15 | 1 | -1/+1 |
| * | Add functor that does strict weak ordering based on national_case_insensitive... | Attila Molnar | 2014-01-04 | 1 | -5/+3 |
| * | Use WriteNumeric() everywhere we send numerics and include the user's nick au... | Adam | 2013-11-12 | 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 | -12/+2 |
| * | Automatically attach modules to events | attilamolnar | 2013-08-04 | 1 | -2/+0 |
| * | Remove $Core and $Mod* comments apart from $ModDep. | Peter Powell | 2013-07-04 | 1 | -2/+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 | -4/+4 |
| * | OnUserPreJoin is a local-only hook, change User* parameter to LocalUser* | attilamolnar | 2013-04-13 | 1 | -3/+1 |
| * | Replace IS_AWAY() and IS_OPER() macros with User::IsAway() and User::IsOper() | attilamolnar | 2013-04-10 | 1 | -1/+1 |
| * | Whitespace and empty destructor removal, minor coding style changes | attilamolnar | 2013-04-01 | 1 | -4/+0 |
| * | Change channel name parameter of Module::OnUserPreJoin() and Channel::JoinUse... | attilamolnar | 2013-04-01 | 1 | -4/+3 |
| * | 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/+1 |
| * | Replace copyright headers with headers granting specific authors copyright | Robby- | 2012-04-19 | 1 | -8/+17 |
| * | ...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 |
| * | Use ConfigTagList as a faster access method for access to configuration•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11948 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-10-21 | 1 | -4/+3 |
| * | Remove VF_SERVICEPROVIDER, prevent heap allocation of ConfigReader•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11904 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-10-18 | 1 | -12/+8 |
| * | 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 |