aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_hostchange.cpp
Commit message (Expand)AuthorAgeFilesLines
* 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.•••This allows us to use range-based for loops which were not possible with the previous config tag system. Gravatar Sadie Powell2020-10-311-4/+1
* | 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.•••- 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. Gravatar Peter Powell2018-09-161-93/+168
* 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 a...•••This eliminates the need for calling OnRehash() in init() Gravatar attilamolnar2013-08-301-6/+1
* 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.•••- 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. Gravatar Peter Powell2013-05-151-4/+4
* Add method for writing server notices.•••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. Gravatar Peter Powell2013-05-141-2/+2
* Whitespace and empty destructor removal, minor coding style changesGravatar attilamolnar2013-04-011-1/+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 Gravatar attilamolnar2012-12-021-1/+1
* 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
* Remove superfluous std::string()sGravatar attilamolnar2012-10-121-2/+2
* m_hostchange No reason to prioritize after m_cloakingGravatar attilamolnar2012-07-261-7/+0
* m_hostchange Remove string copyGravatar attilamolnar2012-07-261-7/+6
* m_hostchange Store host change action as an enum value instead of a string, s...Gravatar attilamolnar2012-07-261-32/+44
* Replace copyright headers with headers granting specific authors copyrightGravatar Robby-2012-04-191-8/+16
* m_hostchange: Fix a typo preventing port filters from workingGravatar Kyle Fuller2012-03-221-1/+1
* ...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 Gravatar brain2010-01-111-1/+1
* Change module API to use LocalUser* where correct•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11943 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-10-211-2/+1