aboutsummaryrefslogtreecommitdiff
path: root/include/modules
Commit message (Expand)AuthorAgeFilesLines
* Added -Wshorten-64-to-32 and fixed all warnings.Gravatar Dominic Hamon2021-05-301-1/+1
* Merge branch 'insp3' into master.Gravatar Sadie Powell2021-05-146-8/+10
|\
| * Update copyright headers.Gravatar InspIRCd Robot2021-05-146-6/+6
| * Fix an off by one error in various bitsets.Gravatar Sadie Powell2021-05-141-2/+4
* | Implement support for looking up SRV records in core_dns.Gravatar Sadie Powell2021-05-111-1/+15
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-05-114-6/+6
|\|
| * Fix a bunch of weird indentation and spacing issues.Gravatar Sadie Powell2021-04-274-9/+9
* | Refactor the hex encoding function.Gravatar Sadie Powell2021-05-101-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-04-271-1/+4
|\|
| * Fix SendNoticeInternal not having a NULL command variant.Gravatar Sadie Powell2021-04-271-1/+4
* | Remove the SASL fallback event.•••Nothing has ever used this and we can do better than this. Gravatar Sadie Powell2021-04-271-36/+0
* | Move ssl_cert::GetMetaLine into the sslinfo module.Gravatar Sadie Powell2021-04-121-12/+0
* | Constify the members of ssl_cert.Gravatar Sadie Powell2021-04-121-10/+10
* | Migrate IOHookProvider from reference<> to std::shared_ptr<>.Gravatar Sadie Powell2021-04-091-1/+1
* | Refer to encryption as TLS instead of SSL in all messages.Gravatar Sadie Powell2021-04-081-21/+21
* | Switch simple iterator loops to use range-based for loops.Gravatar Sadie Powell2021-04-073-10/+7
* | Fix a ton of pedantic compiler warnings.Gravatar Sadie Powell2021-04-044-6/+6
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-03-314-12/+12
|\|
| * Add support for per-DNSBL timeouts.•••This should fix the issue of some DNSBLs being slower than others. Gravatar Sadie Powell2021-03-311-2/+2
| * Fix various documentation comments.Gravatar Sadie Powell2021-03-314-10/+10
* | Convert SQL::Field to be a typedef of optional<string>.Gravatar Sadie Powell2021-03-301-34/+3
* | Use emplace_back where possible.Gravatar Sadie Powell2021-03-301-1/+1
* | Mark {From,To}{Human,Internal,Network} as noexcept.Gravatar Sadie Powell2021-03-171-3/+3
* | Pascalize Set in extension item classes.Gravatar Sadie Powell2021-03-171-1/+1
* | Pascalize Get in extension item classes.Gravatar Sadie Powell2021-03-171-3/+3
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-03-171-2/+8
|\|
| * Add support for sending a standard reply with no command name.Gravatar Sadie Powell2021-03-111-5/+20
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-03-101-0/+10
|\|
| * Add a subclass of IOHookProvider for SSL modules.Gravatar Sadie Powell2021-03-091-0/+10
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-03-051-1/+1
|\|
| * Fix a bunch of really obvious unnecessary includes.Gravatar Sadie Powell2021-03-051-1/+1
* | Refactor classbase/CullResult into Cullable/Cullable::Result.Gravatar Sadie Powell2021-03-021-4/+4
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-02-283-2/+19
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-02-263-2/+3
| * Implement support for multi-prefix on WHOIS.Gravatar Sadie Powell2021-02-251-0/+16
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-01-292-0/+7
|\|
| * Add <dns:enabled>; allows disabling DNS lookups entirely.•••Ref: #1839. Gravatar Sadie Powell2021-01-191-0/+1
| * Allow converting a Cap::Reference to a Cap::Capability*.Gravatar Sadie Powell2021-01-191-0/+6
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-12-212-3/+3
|\|
| * Hide the server name/desc better when <options:hideserver> is set.Gravatar Sadie Powell2020-12-202-7/+7
* | Convert IRCv3::Replies::Reply#Send[IfCap] to variadic functions.Gravatar Sadie Powell2020-11-121-106/+6
* | Convert FOREACH_MOD_CUSTOM to a variadic function.Gravatar Sadie Powell2020-11-101-2/+2
* | Convert FIRST_MOD_RESULT_CUSTOM to a variadic function.Gravatar Sadie Powell2020-11-101-3/+1
* | Clean up a bunch of contructors and destructors.Gravatar Sadie Powell2020-11-012-5/+3
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-07-291-3/+4
|\|
| * Fix secure websocket users not being seen as secure.•••Since a TLS (SSL) module will always be the last IOHook attached to a socket, IsSSL() needs to ignore any Middle IOHooks that may also be attached. Gravatar Matt Schatz2020-07-271-3/+4
* | Add a method for creating a regex pattern with included flags.Gravatar Sadie Powell2020-07-291-0/+29
* | Rewrite the regex system from scratch.•••* Move everything to the Regex namespace: - Regex -> Regex::Pattern - RegexException -> Regex::Exception - RegexFactory -> Regex::Engine * Add support for regex flags. - Regex::OPT_CASE_INSENSITIVE performs case-insensitive matching. * Add the Regex::EngineReference class as a friendly wrapper around dynamic_reference_nocheck<Regex::Engine>. * Add the Regex::SimpleEngine template class for automating the implementation of regex factory classes. * Use std::shared_ptr for Regex::Pattern objects instead of making users manage memory manually. Gravatar Sadie Powell2020-07-281-19/+130
* | Clean up ISUPPORT code and implement support for ISUPPORT updates.Gravatar Sadie Powell2020-07-241-1/+3
* | Pascalize Cap::set and rename Cap::get to IsEnabled.Gravatar Sadie Powell2020-07-203-12/+12