aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_dnsbl.cpp
Commit message (Expand)AuthorAgeFilesLines
* Slim down the globally included files.Gravatar Sadie Powell2022-04-301-0/+4
* Format enums with an underlying type like classes.Gravatar Sadie Powell2022-04-301-2/+4
* Merge branch 'insp3' into master.Gravatar Sadie Powell2022-04-291-1/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2022-04-281-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-04-051-4/+4
|\|
| * Use consistent xline messages locally•••For connectban these messages would have previously been duplicated to other servers until this was fixed earlier today. For dnsbl and rline they would have just differed on the local to a remote. As of the previous commit the module name is included in the setter so there is no need to vary the snotice. This makes things more consistent for server operators and allows scripts to parse the messages. Gravatar Sadie Powell2022-04-051-9/+9
| * Include the module name in the setter for server-added xlines.Gravatar Sadie Powell2022-04-051-3/+3
* | Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-4/+4
* | Add ConnectClass::Ptr as an alias for std::shared_ptr<ConnectClass>.Gravatar Sadie Powell2022-01-161-1/+1
* | Always catch exceptions as a constant reference.Gravatar Sadie Powell2022-01-091-1/+1
* | Refactor CoreException and ModuleException.Gravatar Sadie Powell2022-01-071-6/+6
* | Make all extensibles use kebab-case for names where possible.Gravatar Sadie Powell2021-12-261-2/+2
* | Convert the dnsbl module to use generic stats instead of RPL_TEXT.Gravatar Sadie Powell2021-12-241-4/+4
* | Promote ExtensionItem::ExtensibleType to a top level enum class.Gravatar Sadie Powell2021-12-231-2/+2
* | Fix an unintentionally inverted condition in the dnsbl module.Gravatar Sadie Powell2021-12-201-1/+1
* | Deduplicate xline adding code in the dnsbl module.Gravatar Sadie Powell2021-12-201-42/+20
* | Refactor the DNSBL config types slightly.Gravatar Sadie Powell2021-12-201-15/+15
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-12-141-6/+6
|\|
| * If a user has a unique username then include it in bans.Gravatar Sadie Powell2021-12-141-6/+6
* | Apply the final keyword to all module classes where appropriate.Gravatar Sadie Powell2021-10-041-1/+2
* | Mark all module classes as final.Gravatar Sadie Powell2021-10-011-1/+3
* | Added -Wshorten-64-to-32 and fixed all warnings.Gravatar Dominic Hamon2021-05-301-4/+4
* | Refactor the DNSBL config storage class.Gravatar Sadie Powell2021-05-131-113/+143
* | Refactor the hex encoding function.Gravatar Sadie Powell2021-05-101-1/+1
* | Rename the cgiirc module to gateway.Gravatar Sadie Powell2021-04-111-3/+0
* | Switch simple iterator loops to use range-based for loops.Gravatar Sadie Powell2021-04-071-3/+3
* | Fix a ton of pedantic compiler warnings.Gravatar Sadie Powell2021-04-041-1/+0
* | Constify variables within loops.Gravatar Sadie Powell2021-04-011-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-03-311-1/+4
|\|
| * Add support for per-DNSBL timeouts.•••This should fix the issue of some DNSBLs being slower than others. Gravatar Sadie Powell2021-03-311-1/+4
* | Pascalize Set in extension item classes.Gravatar Sadie Powell2021-03-171-4/+4
* | Pascalize Get in extension item classes.Gravatar Sadie Powell2021-03-171-4/+4
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-03-101-5/+18
|\|
| * Fix not always incrementing the DNSBL stats.Gravatar Sadie Powell2021-03-061-5/+18
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-02-281-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-02-261-1/+1
* | Make MyClass private and move everything to GetClass.Gravatar Sadie Powell2021-01-311-10/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-01-181-29/+54
|\|
| * Add a separate stats class for DNSBL errors.Gravatar Sadie Powell2021-01-181-10/+21
| * Improve the robustness of the DNSBL module.•••- Handle DNSBLs that return invalid lookup results. - Fix DNSBLs that return non-local addresses blocking connections. - Fix silently failing when a DNSBL returns no IPv4 results. - General code cleanup. Gravatar Sadie Powell2021-01-181-21/+35
* | Merge tag 'v3.8.1' into master.Gravatar Sadie Powell2020-11-201-1/+10
|\|
| * Avoid doing "IP changed" event stuff on quitting users.Gravatar Sadie Powell2020-11-201-1/+4
| * Prioritise connectban and dnsbl after core_xline.Gravatar Sadie Powell2020-11-101-0/+6
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-11-031-3/+11
|\|
| * Make connect class debug logging more complete and consistent.Gravatar Sadie Powell2020-11-031-3/+11
* | Move FilePosition to fileutils.h and use in ConfigTag.Gravatar Sadie Powell2020-11-031-4/+4
* | Convert ConnectClass from reference<> to std::shared_ptr<>.Gravatar Sadie Powell2020-11-031-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-11-011-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-10-301-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-3/+1