]> saetta.ns0.it Git - libglib-mldonkey/commitdiff
Wrong size of message sent.
authorAndrea Zagli <azagli@libero.it>
Sat, 22 Aug 2015 13:14:19 +0000 (15:14 +0200)
committerAndrea Zagli <azagli@libero.it>
Sat, 22 Aug 2015 13:14:19 +0000 (15:14 +0200)
autogen.sh
src/glib-mldonkey.c

index 2bfbe7fd02803c469be28390838acad962373bed..83f5de2eff99d76076f1d617e180c5f07d309433 100755 (executable)
@@ -32,8 +32,10 @@ cd $olddir
 if [ "$NOCONFIGURE" = "" ]; then
         $srcdir/configure "$@" || exit 1
 
-        if [ "$1" = "--help" ]; then exit 0 else
-                echo "Now type \`make\' to compile $PKG_NAME" || exit 1
+        if [ "$1" = "--help" ]; then
+                       exit 0
+               else
+            echo "Now type \`make\' to compile $PKG_NAME" || exit 1
         fi
 else
         echo "Skipping configure process."
index 5ef94fafab3baf67db966fd5a2c66ff2e1717e87..eb1860e455fbbb9bb2346ec29b2db9a5f9b16d65 100644 (file)
@@ -354,7 +354,7 @@ glib_mldonkey_reply (GlibMldonkey *glibmldonkey, guint32 fopcode)
                {
                case 0:
                        /* protocol version  */
-                       buf32 = 4 + 2 + 4;
+                       buf32 = 2 + 4;
                        error = NULL;
                        written = g_output_stream_write (priv->ostream,
                                                                           &buf32,
@@ -400,7 +400,7 @@ glib_mldonkey_reply (GlibMldonkey *glibmldonkey, guint32 fopcode)
                        guint16 lname = strlen (priv->username);
                        guint16 lpassword = strlen (priv->password);
 
-                       buf32 = 4 + 2 + 2 + lname + 2 + lpassword;
+                       buf32 = 2 + 2 + lpassword + 2 + lname;
                        error = NULL;
                        written = g_output_stream_write (priv->ostream,
                                                                           &buf32,
@@ -428,7 +428,7 @@ glib_mldonkey_reply (GlibMldonkey *glibmldonkey, guint32 fopcode)
                                        return;
                                }
 
-                       buf16 = lname;
+                       buf16 = lpassword;
                        error = NULL;
                        written = g_output_stream_write (priv->ostream,
                                                                           &buf16,
@@ -443,9 +443,10 @@ glib_mldonkey_reply (GlibMldonkey *glibmldonkey, guint32 fopcode)
                                }
 
                        error = NULL;
-                       written = g_output_stream_write (priv->ostream,
-                                                                          &priv->username,
-                                                                          lname,
+                       g_output_stream_write_all (priv->ostream,
+                                                                          priv->password,
+                                                                          lpassword,
+                                                                          &written,
                                                                           NULL,
                                                                           &error);
                        if (written < 1
@@ -455,7 +456,7 @@ glib_mldonkey_reply (GlibMldonkey *glibmldonkey, guint32 fopcode)
                                        return;
                                }
 
-                       buf16 = lpassword;
+                       buf16 = lname;
                        error = NULL;
                        written = g_output_stream_write (priv->ostream,
                                                                           &buf16,
@@ -470,9 +471,10 @@ glib_mldonkey_reply (GlibMldonkey *glibmldonkey, guint32 fopcode)
                                }
 
                        error = NULL;
-                       written = g_output_stream_write (priv->ostream,
-                                                                          &priv->password,
-                                                                          lpassword,
+                       g_output_stream_write_all (priv->ostream,
+                                                                          priv->username,
+                                                                          lname,
+                                                                          &written,
                                                                           NULL,
                                                                           &error);
                        if (written < 1