]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_conn_waitpong.cpp
Forward port r9782: show IP (not unknown) for unauthed connections
[user/henk/code/inspircd.git] / src / modules / m_conn_waitpong.cpp
index 3b63f07a7272f0e7b498685015cc92e76608df50..4fe71f1629dca01ec869717128ba6bc060853ffe 100644 (file)
@@ -63,13 +63,13 @@ class ModuleWaitPong : public Module
                user->Write("PING :%s", pingrpl);
                
                if(sendsnotice)
-                       user->WriteServ("NOTICE %s :*** If you are having problems connecting due to ping timeouts, please type /quote PONG %s or /raw PONG %s now.", user->nick, pingrpl, pingrpl);
+                       user->WriteServ("NOTICE %s :*** If you are having problems connecting due to ping timeouts, please type /quote PONG %s or /raw PONG %s now.", user->nick.c_str(), pingrpl, pingrpl);
                        
                user->Extend(extenstr, pingrpl);
                return 0;
        }
        
-       virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, User* user, bool validated, const std::string &original_line)
+       virtual int OnPreCommand(const std::string &command, const std::vector<std::string> &parameters, User* user, bool validated, const std::string &original_line)
        {
                if (command == "PONG")
                {
@@ -78,7 +78,7 @@ class ModuleWaitPong : public Module
                        
                        if (pingrpl)
                        {
-                               if (strcmp(pingrpl, parameters[0]) == 0)
+                               if (strcmp(pingrpl, parameters[0].c_str()) == 0)
                                {
                                        delete[] pingrpl;
                                        user->Shrink(extenstr);
@@ -87,7 +87,7 @@ class ModuleWaitPong : public Module
                                else
                                {
                                        if(killonbadreply)
-                                               User::QuitUser(ServerInstance, user, "Incorrect ping reply for registration");
+                                               ServerInstance->Users->QuitUser(user, "Incorrect ping reply for registration");
                                        return 1;
                                }
                        }
@@ -135,7 +135,7 @@ class ModuleWaitPong : public Module
        
        virtual Version GetVersion()
        {
-               return Version(1, 1, 0, 1, VF_VENDOR, API_VERSION);
+               return Version(1, 2, 0, 1, VF_VENDOR, API_VERSION);
        }
        
 };