1
0
mirror of https://github.com/anope/anope.git synced 2026-06-12 19:14:47 +02:00

Get rid of the internal block wrapper.

This only existed for compatibility with old 2.0 modules and 2.1
has already broken compatibility with them.
This commit is contained in:
Sadie Powell
2025-04-19 12:47:52 +01:00
parent 452e62c050
commit d815906393
42 changed files with 61 additions and 67 deletions
+4 -4
View File
@@ -114,7 +114,7 @@ public:
void OnReload(Configuration::Conf &conf) override
{
Configuration::Block &block = conf.GetModule(this);
const auto &block = conf.GetModule(this);
this->check_on_connect = block.Get<bool>("check_on_connect");
this->check_on_netburst = block.Get<bool>("check_on_netburst");
this->add_to_akill = block.Get<bool>("add_to_akill", "yes");
@@ -122,7 +122,7 @@ public:
this->blacklists.clear();
for (int i = 0; i < block.CountBlock("blacklist"); ++i)
{
Configuration::Block &bl = block.GetBlock("blacklist", i);
const auto &bl = block.GetBlock("blacklist", i);
Blacklist blacklist;
blacklist.name = bl.Get<Anope::string>("name");
@@ -133,7 +133,7 @@ public:
for (int j = 0; j < bl.CountBlock("reply"); ++j)
{
Configuration::Block &reply = bl.GetBlock("reply", j);
const auto &reply = bl.GetBlock("reply", j);
Blacklist::Reply r;
r.code = reply.Get<int>("code");
@@ -149,7 +149,7 @@ public:
this->exempts.clear();
for (int i = 0; i < block.CountBlock("exempt"); ++i)
{
Configuration::Block &bl = block.GetBlock("exempt", i);
const auto &bl = block.GetBlock("exempt", i);
this->exempts.insert(bl.Get<Anope::string>("ip"));
}
}