]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/users.cpp
Added some missing parameter checking in m_swhois
[user/henk/code/inspircd.git] / src / users.cpp
index bc221b263c76c7ee10d533b555f32c5ce8cf245f..d83788566acac1afb47976d7875f5bbe25830b28 100644 (file)
@@ -1375,6 +1375,9 @@ void userrec::Write(std::string text)
        {
                try
                {
+                       /* XXX: The lack of buffering here is NOT a bug, modules implementing this interface have to
+                        * implement their own buffering mechanisms
+                        */
                        ServerInstance->Config->GetIOHook(this->GetPort())->OnRawSocketWrite(this->fd, text.data(), text.length());
                }
                catch (CoreException& modexcept)