diff options
| author | 2015-01-18 10:40:33 +0100 | |
|---|---|---|
| committer | 2015-01-18 10:40:33 +0100 | |
| commit | 4fc2f7199e964ba5112ecdb2613c6fd5c2eee638 (patch) | |
| tree | bf2469f00fd4dfeaa07c0ab431a9663952cf17b7 /src/modules/m_dnsbl.cpp | |
| parent | Verify that the chan in chanlist is in fact the same object as us in Channel:... (diff) | |
| download | inspircd++-4fc2f7199e964ba5112ecdb2613c6fd5c2eee638.tar.gz inspircd++-4fc2f7199e964ba5112ecdb2613c6fd5c2eee638.tar.bz2 inspircd++-4fc2f7199e964ba5112ecdb2613c6fd5c2eee638.zip | |
Specify which Extensible subclass an ExtensionItem is valid for
Diffstat (limited to 'src/modules/m_dnsbl.cpp')
| -rw-r--r-- | src/modules/m_dnsbl.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/modules/m_dnsbl.cpp b/src/modules/m_dnsbl.cpp index 63dda547f..7b38da4bf 100644 --- a/src/modules/m_dnsbl.cpp +++ b/src/modules/m_dnsbl.cpp @@ -236,7 +236,12 @@ class ModuleDNSBL : public Module return DNSBLConfEntry::I_UNKNOWN; } public: - ModuleDNSBL() : DNS(this, "DNS"), nameExt("dnsbl_match", this), countExt("dnsbl_pending", this) { } + ModuleDNSBL() + : DNS(this, "DNS") + , nameExt("dnsbl_match", ExtensionItem::EXT_USER, this) + , countExt("dnsbl_pending", ExtensionItem::EXT_USER, this) + { + } Version GetVersion() CXX11_OVERRIDE { |
