aboutsummaryrefslogtreecommitdiffstats
path: root/src/coremods
Commit message (Expand)AuthorAgeFilesLines
...
| * Make loading modules considerably more robust and user friendly.Gravatar Sadie Powell2020-02-021-2/+2
| * Fix being able to see the modes of private/secret channels.Gravatar Sadie Powell2020-02-021-1/+18
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-313-3/+3
| * Use the default OnParameterMissing in ModeUserServerNoticeMask.Gravatar Sadie Powell2020-01-302-7/+1
| * Tweak the default motd/opermotd slightly.•••Also, remove the - at the start of the MOTD field. This is cargo culted from irc2 and theres no real reason to actually do this. Gravatar Sadie Powell2020-01-221-1/+1
| * Improve the DNS cache expiration log message.•••Instead of constantly spamming the log file only show the message when an entry is actually expired and show how many entries were expired. Gravatar Sadie Powell2020-01-171-2/+8
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-1759-84/+348
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-1160-85/+350
* | Move ISupport logic out of the core and into core_info.Gravatar Sadie Powell2020-01-057-18/+197
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-013-2/+10
|\|
| * Update my name and email address.Gravatar Sadie Powell2019-12-312-2/+2
| * Move XLine garbage collection to core_xline.Gravatar Peter Powell2019-12-081-0/+8
* | Get rid of UserManager#OperCount and UserManager#UserCount.•••OperCount was only used in one place, UserCount is used nowhere, and both just a wrapper around data which is accessible by other means. Gravatar Sadie Powell2019-12-291-2/+3
* | Move CountInvisible into the LusersCounter constructor.Gravatar Sadie Powell2019-12-281-16/+10
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-12-081-11/+5
|\|
| * Make rehashing messages more consistent.Gravatar Peter Powell2019-11-171-11/+5
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-11-133-53/+56
|\|
| * Fix some compiler errors in core_hostname_lookup.•••No thanks to SourceTree's diff view for causing this. Gravatar Peter Powell2019-10-221-2/+2
| * Handle more error cases in core_hostname_lookup.Gravatar Peter Powell2019-10-221-12/+16
| * On DNS fail reset connecting users hostname to their IP.•••Closes #1713. Gravatar Peter Powell2019-10-221-0/+2
| * Improve the core_hostname_lookup result log message.•••- Add the type of request. - Add whether the request was cached. Gravatar Peter Powell2019-10-211-1/+4
| * Remove duplicate code in core_hostname_lookup.•••- The lookup type is already stored in the question. - core_dns validates hostnames by IsHost already. Gravatar Peter Powell2019-10-211-28/+5
| * Get rid of the ptrHosts extension item.•••This is unnecessary as the resolved value is already stored in the question in the request class. Gravatar Peter Powell2019-10-211-10/+2
| * Add GetTypeStr to the DNS API.Gravatar Peter Powell2019-10-131-0/+19
| * Convert a bunch of LocalUser* casts to IS_LOCAL.•••This is a lot safer and handles users changing servers properly. Gravatar Peter Powell2019-10-131-2/+2
| * Show the list modes which have variable list lengths in 005.Gravatar Peter Powell2019-10-011-4/+14
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-09-231-1/+1
|\|
| * Fix some remaining uses of ato[il].Gravatar Peter Powell2019-08-131-1/+1
* | Replace LocalIntExt with IntExtItem.Gravatar Sadie Powell2019-08-133-5/+5
* | Rewrite and merge LocalStringExt, StringExtItem.Gravatar Sadie Powell2019-08-134-5/+5
* | Move the Module parameter of ExtensionItem et al to the start.•••This matches what other ServiceProvider types do. Gravatar Sadie Powell2019-08-133-4/+4
* | Rename ExtensionItem::free to ExtensionItem::Delete.Gravatar Sadie Powell2019-08-131-2/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-08-093-19/+27
|\|
| * Convert all core ExtensionItem code away from {un,}serialize.Gravatar Peter Powell2019-08-072-17/+25
| * Add {To,From}{Human,Internal,Network} to ExtensionItem.•••Also, deprecate the old SerializeFormat/serialize/unserialise API. Gravatar Peter Powell2019-08-071-2/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-07-167-2/+12
|\|
| * Send ERR_NOTEXTTOSEND in response to an empty GLOBOPS/WALLOPS.Gravatar Peter Powell2019-07-151-0/+6
| * Fix error message for splitwhois value.Gravatar Matt Schatz2019-07-031-1/+1
| * Show the mode syntax in ERR_INVALIDMODEPARAM.Gravatar Peter Powell2019-06-124-0/+4
| * Allow channels/auspex to see a secret channel topic. (#1654)•••An oper with the 'channels/auspex' priv can now see the topic of a secret channel (that they are not in) using TOPIC. This is on par with the expectation of 'channels/auspex' and current LIST behaviour.Gravatar Matt Schatz2019-06-051-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-05-1525-190/+186
|\|
| * Move message access checks to OnUserPre{Tag,}Message.•••This allows modules to override them if necessary. Fixes #1619. Gravatar Peter Powell2019-05-111-30/+36
| * cmd_names: Fix the syntax.Gravatar Robby2019-05-051-1/+1
| * Some more text fixes and improvements (#1618).Gravatar Robby2019-04-281-1/+1
| * Textual improvements and fixes such as typos, casing, etc. (#1612)Gravatar Robby2019-04-2813-25/+25
| * Fix grammar in unknown mode/snomask character messages.Gravatar Robby2019-04-211-1/+1
| * Improve the descriptions of various core modules.Gravatar Peter Powell2019-04-195-5/+5
| * Demote core_ison and core_userhost to commands in core_user.•••These are not important enough for their own module. Gravatar Peter Powell2019-04-194-81/+52
| * Promote cmd_mode to its own core module.•••core_user was an inappropriate location for this as it contains mode changing code which is used by channels as well as users. Gravatar Peter Powell2019-04-193-37/+54
| * Remove the OnNamesListItem event out of the core.Gravatar Peter Powell2019-04-192-7/+7