static gboolean
glib_mldonkey_read_message (GlibMldonkey *glibmldonkey)
{
+ gboolean ret;
+
GlibMldonkeyMessage *msg;
guint16 buf16;
guint32 buf32;
g_message ("function opcode: %d", msg->fopcode);
/* the content */
- error = NULL;
- msg->data = (guint8 *)g_new0 (guint8, msg->length);
- written = g_input_stream_read (priv->istream,
- &msg->data[0],
- msg->length,
- NULL,
- &error);
- if (written < 1
- || error != NULL)
+ if (msg->fopcode != 47)
{
- g_warning ("error %s", error->message != NULL ? error->message : "no details");
- return FALSE;
- }
- else
- {
- g_message ("written: %d", written);
+ error = NULL;
+ msg->data = (guint8 *)g_new0 (guint8, msg->length);
+ written = g_input_stream_read (priv->istream,
+ &msg->data[0],
+ msg->length,
+ NULL,
+ &error);
+ if (written < 1
+ || error != NULL)
+ {
+ g_warning ("error %s", error->message != NULL ? error->message : "no details");
+ return FALSE;
+ }
+ else
+ {
+ g_message ("written: %d", written);
+ }
}
+ ret = TRUE;
switch (msg->fopcode)
{
case 0: /* CoreProtocol */
case 47: /* BadPassword */
g_warning ("Bad username/password");
+ ret = FALSE;
break;
}
- return TRUE;
+ return ret;
}
static void