summaryrefslogtreecommitdiff
path: root/src/modules/m_sethost.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-12-31 00:06:43 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-12-31 00:06:43 +0000
commit6e7612767e4809fde98399b41ccea5fe964898d3 (patch)
tree43b2b64c5e4c0e32e165fbbb3e3e2badb7d3aac5 /src/modules/m_sethost.cpp
parent8982ea4cf5adc493340e602e2c3290210c7bf110 (diff)
<hostname:charmap> defines the valid characters in a hostmask (this is for you webs to obsolete your patch :p)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6186 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_sethost.cpp')
-rw-r--r--src/modules/m_sethost.cpp43
1 files changed, 29 insertions, 14 deletions
diff --git a/src/modules/m_sethost.cpp b/src/modules/m_sethost.cpp
index 79fb9a42b..f05d2c8a4 100644
--- a/src/modules/m_sethost.cpp
+++ b/src/modules/m_sethost.cpp
@@ -25,8 +25,10 @@
*/
class cmd_sethost : public command_t
{
+ private:
+ char*& hostmap;
public:
- cmd_sethost (InspIRCd* Instance) : command_t(Instance,"SETHOST",'o',1)
+ cmd_sethost (InspIRCd* Instance, char*& hmap) : command_t(Instance,"SETHOST",'o',1), hostmap(hmap)
{
this->source = "m_sethost.so";
syntax = "<new-hostname>";
@@ -37,13 +39,10 @@ class cmd_sethost : public command_t
size_t len = 0;
for (const char* x = parameters[0]; *x; x++, len++)
{
- if (((tolower(*x) < 'a') || (tolower(*x) > 'z')) && (*x != '.'))
+ if (!strchr(hostmap, *x))
{
- if (((*x < '0') || (*x> '9')) && (*x != '-'))
- {
- user->WriteServ("NOTICE "+std::string(user->nick)+" :*** Invalid characters in hostname");
- return CMD_FAILURE;
- }
+ user->WriteServ("NOTICE "+std::string(user->nick)+" :*** Invalid characters in hostname");
+ return CMD_FAILURE;
}
}
if (len > 64)
@@ -64,16 +63,34 @@ class cmd_sethost : public command_t
class ModuleSetHost : public Module
{
- cmd_sethost* mycommand;
+ cmd_sethost* mycommand;
+ char* hostmap;
+ std::string hmap;
public:
ModuleSetHost(InspIRCd* Me)
: Module::Module(Me)
- {
-
- mycommand = new cmd_sethost(ServerInstance);
+ {
+ OnRehash("");
+ mycommand = new cmd_sethost(ServerInstance, hostmap);
ServerInstance->AddCommand(mycommand);
}
-
+
+ void Implements(char* List)
+ {
+ List[I_OnRehash] = 1;
+ }
+
+ void OnRehash(const std::string &parameter)
+ {
+ ConfigReader Conf(ServerInstance);
+ hmap = Conf.ReadValue("hostname", "charmap", 0);
+
+ if (hmap.empty())
+ hostmap = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz.-_/0123456789";
+ else
+ hostmap = (char*)hmap.c_str();
+ }
+
virtual ~ModuleSetHost()
{
}
@@ -85,8 +102,6 @@ class ModuleSetHost : public Module
};
-// stuff down here is the module-factory stuff. For basic modules you can ignore this.
-
class ModuleSetHostFactory : public ModuleFactory
{
public: