]> andersk Git - libfaim.git/blobdiff - src/login.c
- Mon Apr 23 15:58:11 PDT 2001
[libfaim.git] / src / login.c
index fef6db4fb99311ddb60631d4bde8328410700964..7b36b97712df6d1f4fa549a40ed5eb35140da07a 100644 (file)
@@ -741,6 +741,28 @@ static int memrequest(struct aim_session_t *sess, aim_module_t *mod, struct comm
   return 0;
 }
 
+static void dumpbox(struct aim_session_t *sess, unsigned char *buf, int len)
+{
+  int i = 0;
+
+  if (!sess || !buf || !len)
+    return;
+
+  faimdprintf(sess, 1, "\nDump of %d bytes at %p:", len, buf);
+
+  for (i = 0; i < len; i++)
+    {
+      if ((i % 8) == 0)
+       faimdprintf(sess, 1, "\n\t");
+
+      faimdprintf(sess, 1, "0x%2x ", buf[i]);
+    }
+  
+  faimdprintf(sess, 1, "\n\n");
+
+  return;
+}
+
 faim_export int aim_sendmemblock(struct aim_session_t *sess, struct aim_conn_t *conn, unsigned long offset, unsigned long len, const unsigned char *buf)
 {
   struct command_tx_struct *tx;
@@ -765,6 +787,20 @@ faim_export int aim_sendmemblock(struct aim_session_t *sess, struct aim_conn_t *
     md5_finish(&state, (md5_byte_t *)(tx->data+i));
     i += 0x10;
 
+  } else if (len == 0) { /* no length, just hash NULL (buf is optional) */
+    md5_state_t state;
+    unsigned char nil = '\0';
+
+    /*
+     * These MD5 routines are stupid in that you have to have
+     * at least one append.  So thats why this doesn't look 
+     * real logical.
+     */
+    md5_init(&state);
+    md5_append(&state, (const md5_byte_t *)&nil, 0);
+    md5_finish(&state, (md5_byte_t *)(tx->data+i));
+    i += 0x10;
+
   } else {
 
     if ((offset != 0x00001004) || (len != 0x00000004))
This page took 0.499201 seconds and 4 git commands to generate.