]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_dccallow.cpp
This works, not sure why. Someone find out why we cant use && !isock->HasResult(...
[user/henk/code/inspircd.git] / src / modules / m_dccallow.cpp
index ebd3b863082afe17391de8f426489c4083eb4661..2b67654cc737585b3d1a2e057836108cd55c6805 100644 (file)
@@ -44,10 +44,10 @@ dccallowlist* dl;
 typedef std::vector<BannedFileList> bannedfilelist;
 bannedfilelist bfl;
 
-class cmd_dccallow : public Command
+class CommandDccallow : public Command
 {
  public:
-       cmd_dccallow(InspIRCd* Me) : Command(Me, "DCCALLOW", 0, 0)
+       CommandDccallow(InspIRCd* Me) : Command(Me, "DCCALLOW", 0, 0)
        {
                this->source = "m_dccallow.so";
                syntax = "{[+|-]<nick> <time>|HELP|LIST}";
@@ -245,14 +245,14 @@ class cmd_dccallow : public Command
        
 class ModuleDCCAllow : public Module
 {
-       cmd_dccallow* mycommand;
+       CommandDccallow* mycommand;
  public:
 
        ModuleDCCAllow(InspIRCd* Me)
                : Module(Me)
        {
                Conf = new ConfigReader(ServerInstance);
-               mycommand = new cmd_dccallow(ServerInstance);
+               mycommand = new CommandDccallow(ServerInstance);
                ServerInstance->AddCommand(mycommand);
                ReadFileConf();
        }