]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Tweaks for valgrind (again)
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Sun, 26 Feb 2006 23:01:34 +0000 (23:01 +0000)
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Sun, 26 Feb 2006 23:01:34 +0000 (23:01 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3356 e03df62e-2008-0410-955e-edbf42e46eb7

src/socket.cpp

index 1db915e4a36d0de6c49ea0454845745283ebdb41..e240d1208825a3ae0a9d5df6a98ee08f84fb3ab3 100644 (file)
@@ -63,6 +63,7 @@ InspSocket::InspSocket(std::string ahost, int aport, bool listening, unsigned lo
 {
        this->fd = -1;
        this->host = ahost;
+       this->Buffer = "";
        if (listening) {
                if ((this->fd = OpenTCPSocket()) == ERROR)
                {
@@ -258,23 +259,26 @@ int InspSocket::Write(std::string data)
 
 void InspSocket::FlushWriteBuffer()
 {
-       int result = 0;
-       const char* n = this->Buffer.c_str();
-       int v = this->Buffer.length();
-       if (v > 0)
+       if ((this->fd > -1) && (this->state == I_CONNECTED))
        {
-               result = send(this->fd,n,v,0);
-               if (result > 0)
+               int result = 0;
+               const char* n = Buffer.c_str();
+               int v = Buffer.length();
+               if (v > 0)
                {
-                       if (result == v)
+                       result = write(this->fd,n,v);
+                       if (result > 0)
                        {
-                               this->Buffer = "";
-                       }
-                       else
-                       {
-                               /* If we wrote some, advance the buffer forwards */
-                               n += result;
-                               this->Buffer = n;
+                               if (result == v)
+                               {
+                                       Buffer = "";
+                               }
+                               else
+                               {
+                                       /* If we wrote some, advance the buffer forwards */
+                                       n += result;
+                                       Buffer = n;
+                               }
                        }
                }
        }