summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/modules/m_chghost.cpp16
-rw-r--r--src/modules/m_sethost.cpp16
2 files changed, 17 insertions, 15 deletions
diff --git a/src/modules/m_chghost.cpp b/src/modules/m_chghost.cpp
index 30efd1390..cda13c976 100644
--- a/src/modules/m_chghost.cpp
+++ b/src/modules/m_chghost.cpp
@@ -25,9 +25,11 @@
*/
class CommandChghost : public Command
{
- char* hostmap;
public:
- CommandChghost(Module* Creator, char* hmap) : Command(Creator,"CHGHOST", 2), hostmap(hmap)
+ std::bitset<UCHAR_MAX> hostmap;
+
+ CommandChghost(Module* Creator)
+ : Command(Creator,"CHGHOST", 2)
{
allow_empty_last_param = false;
flags_needed = 'o';
@@ -45,7 +47,7 @@ class CommandChghost : public Command
for (std::string::const_iterator x = parameters[1].begin(); x != parameters[1].end(); x++)
{
- if (!hostmap[(unsigned char)*x])
+ if (!hostmap.test(*x))
{
user->WriteNotice("*** CHGHOST: Invalid characters in hostname");
return CMD_FAILURE;
@@ -83,10 +85,10 @@ class CommandChghost : public Command
class ModuleChgHost : public Module
{
CommandChghost cmd;
- char hostmap[256];
public:
- ModuleChgHost() : cmd(this, hostmap)
+ ModuleChgHost()
+ : cmd(this)
{
}
@@ -94,9 +96,9 @@ class ModuleChgHost : public Module
{
std::string hmap = ServerInstance->Config->ConfValue("hostname")->getString("charmap", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz.-_/0123456789");
- memset(hostmap, 0, sizeof(hostmap));
+ cmd.hostmap.reset();
for (std::string::iterator n = hmap.begin(); n != hmap.end(); n++)
- hostmap[(unsigned char)*n] = 1;
+ cmd.hostmap.set(*n);
}
Version GetVersion() CXX11_OVERRIDE
diff --git a/src/modules/m_sethost.cpp b/src/modules/m_sethost.cpp
index 23dbbad56..b75bac425 100644
--- a/src/modules/m_sethost.cpp
+++ b/src/modules/m_sethost.cpp
@@ -25,10 +25,11 @@
*/
class CommandSethost : public Command
{
- char* hostmap;
-
public:
- CommandSethost(Module* Creator, char* hmap) : Command(Creator,"SETHOST", 1), hostmap(hmap)
+ std::bitset<UCHAR_MAX> hostmap;
+
+ CommandSethost(Module* Creator)
+ : Command(Creator,"SETHOST", 1)
{
allow_empty_last_param = false;
flags_needed = 'o'; syntax = "<new-hostname>";
@@ -44,7 +45,7 @@ class CommandSethost : public Command
for (std::string::const_iterator x = parameters[0].begin(); x != parameters[0].end(); x++)
{
- if (!hostmap[(const unsigned char)*x])
+ if (!hostmap.test(*x))
{
user->WriteNotice("*** SETHOST: Invalid characters in hostname");
return CMD_FAILURE;
@@ -65,11 +66,10 @@ class CommandSethost : public Command
class ModuleSetHost : public Module
{
CommandSethost cmd;
- char hostmap[256];
public:
ModuleSetHost()
- : cmd(this, hostmap)
+ : cmd(this)
{
}
@@ -77,9 +77,9 @@ class ModuleSetHost : public Module
{
std::string hmap = ServerInstance->Config->ConfValue("hostname")->getString("charmap", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz.-_/0123456789");
- memset(hostmap, 0, sizeof(hostmap));
+ cmd.hostmap.reset();
for (std::string::iterator n = hmap.begin(); n != hmap.end(); n++)
- hostmap[(unsigned char)*n] = 1;
+ cmd.hostmap.set(*n);
}
Version GetVersion() CXX11_OVERRIDE