aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_hostchange.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-4/+4
|
* Refactor CoreException and ModuleException.Gravatar Sadie Powell2022-01-071-3/+3
|
* Apply the final keyword to all module classes where appropriate.Gravatar Sadie Powell2021-10-041-1/+1
|
* Mark all module classes as final.Gravatar Sadie Powell2021-10-011-1/+2
|
* Fix a shortening issue in hostchange.Gravatar Sadie Powell2021-07-171-1/+1
|
* Merge branch 'insp3' into master.Gravatar Sadie Powell2021-07-041-16/+26
|\
| * Allow hostchange to select users based on connect class.Gravatar Sadie Powell2021-07-031-0/+7
| |
| * Move hostchange port parsing to a method in the HostRule class.Gravatar Sadie Powell2021-07-031-16/+19
| |
* | Added -Wshorten-64-to-32 and fixed all warnings.Gravatar Dominic Hamon2021-05-301-5/+5
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-05-141-2/+2
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-05-141-1/+1
| |
| * Fix an off by one error in various bitsets.Gravatar Sadie Powell2021-05-141-1/+1
| |
* | Switch simple iterator loops to use range-based for loops.Gravatar Sadie Powell2021-04-071-9/+6
| |
* | Constify variables within loops.Gravatar Sadie Powell2021-04-011-1/+1
| |
* | Use emplace_back where possible.Gravatar Sadie Powell2021-03-301-3/+3
| |
* | Pascalize Get in extension item classes.Gravatar Sadie Powell2021-03-171-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-03-051-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-03-051-1/+1
| |
* | Move FilePosition to fileutils.h and use in ConfigTag.Gravatar Sadie Powell2020-11-031-3/+3
| |
* | Convert ConfigTag from reference<> to std::shared_ptr<>.Gravatar Sadie Powell2020-10-311-1/+1
| |
* | Add stdalgo::iterator_range and switch config tag reading to use it.Gravatar Sadie Powell2020-10-311-4/+1
| | | | | | | | | | This allows us to use range-based for loops which were not possible with the previous config tag system.
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-05-051-2/+2
|\|
| * Fix a typo in the hostchange module.Gravatar Sadie Powell2020-05-051-1/+1
| |
| * Update copyright headers.Gravatar InspIRCd Robot2020-04-241-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-04-111-1/+1
|\|
| * Update the module descriptions using mkversion.Gravatar Sadie Powell2020-04-101-1/+1
| |
* | Improve storage of module description, flags, and link data.Gravatar Sadie Powell2020-04-111-5/+5
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-04-091-1/+3
|\|
| * Set the minimum length to 1 for most config items with a default.Gravatar Sadie Powell2020-04-091-1/+3
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-2/+6
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-2/+6
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-02-151-1/+1
|\|
| * Replace GetServerPort() with server_sa.port().Gravatar Peter Powell2019-02-151-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-02-051-2/+2
|\|
| * Remove trailing whitespace from various source files.Gravatar Peter Powell2019-01-241-2/+2
| |
* | Replace the override macro with the override keyword.Gravatar Sadie Powell2019-01-251-3/+3
|/
* Fix the hostchange set action swapping the host/value fields.Gravatar Peter Powell2019-01-141-1/+1
|
* Improvements to the hostchange module.Gravatar Peter Powell2018-09-161-93/+168
| | | | | | | | | | | | | | | | - Get rid of <host> and merge the prefix and suffix values into the <hostchange> value. - Remove the 'suffix' action. This has been replaced by the 'set' action. - Add the 'addaccount' action. This adds the users account to their hostname. - Use the <hostname:charmap> characters when removing invalid chars in addnick mode. - Allow multiple entries on each hostmask so that they can fall through if a certain value is not acceptable. Closes #816. Closes #1001.
* Remove a few unnecessary .c_str() callsGravatar Attila Molnar2014-01-311-1/+1
|
* Replace OnRehash() with ReadConfig() that is called on boot, on module load ↵Gravatar attilamolnar2013-08-301-6/+1
| | | | | | and on rehash This eliminates the need for calling OnRehash() in init()
* Automatically attach modules to eventsGravatar attilamolnar2013-08-041-2/+0
|
* Remove $Core and $Mod* comments apart from $ModDep.Gravatar Peter Powell2013-07-041-2/+0
|
* Tidy up keywords on module methods.Gravatar Peter Powell2013-05-151-4/+4
| | | | | - 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.
* Add method for writing server notices.Gravatar Peter Powell2013-05-141-2/+2
| | | | | | | | | This allows us to send a server notice to a user without worrying about whether they are registered or not. If a user receives a server notice and they are not registered then the nickname field will contain an asterisk instead of their nick name.
* Whitespace and empty destructor removal, minor coding style changesGravatar attilamolnar2013-04-011-1/+0
|
* Dynamically determine the size of the eventlist[] passed to Attach()Gravatar attilamolnar2012-12-021-1/+1
| | | | m_sqlauth was attached to I_OnUserDisconnect but didn't provide a handler for it, remove
* Attach to events and register services in init()Gravatar attilamolnar2012-12-021-2/+2
|
* Remove usage of the deprecated ConfigReaderGravatar attilamolnar2012-11-121-4/+4
|
* wrong order of arguments to Host()Gravatar Steven Van Acker2012-11-091-1/+1
|
* use documented "value" attribute instead of undocumented "newhost"Gravatar Steven Van Acker2012-11-091-1/+1
|