]> andersk Git - libfaim.git/commitdiff
- Mon Apr 23 15:58:11 PDT 2001
authormid <mid>
Mon, 23 Apr 2001 23:04:38 +0000 (23:04 +0000)
committermid <mid>
Mon, 23 Apr 2001 23:04:38 +0000 (23:04 +0000)
  - On a clear day, you can see forever.

CHANGES
src/login.c
utils/faimtest/faimtest.c

diff --git a/CHANGES b/CHANGES
index 3cbdd9a58c68ebc3c390061a89800f3ce73d5a7f..5488d4b64543af3ccac73267547e2fd07c52cae6 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
 
 No release numbers
 ------------------
+ - Mon Apr 23 15:58:11 PDT 2001
+  - On a clear day, you can see forever.
+
  - Thu Mar 29 13:05:50 PST 2001
   - Less leaks.
 
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))
index 06102424c434c4d340042d9e4103462b6352c5f0..b5d90767c359578d25a538ab4814ee3bd4215fca 100644 (file)
@@ -803,6 +803,8 @@ static int getaimdata(unsigned char *buf, int buflen, unsigned long offset, cons
   static const char defaultmod[] = "aim.exe";
   char *filename = NULL;
 
+  memset(buf, 0, buflen);
+
   if (modname) {
 
     if (!(filename = malloc(strlen(aimbinarypath)+1+strlen(modname)+4+1))) {
@@ -833,16 +835,18 @@ static int getaimdata(unsigned char *buf, int buflen, unsigned long offset, cons
 
   free(filename);
 
-  if (fseek(f, offset, SEEK_SET) == -1) {
-    dperror("memrequest: fseek");
-    fclose(f);
-    return -1;
-  }
+  if (buflen) {
+    if (fseek(f, offset, SEEK_SET) == -1) {
+      dperror("memrequest: fseek");
+      fclose(f);
+      return -1;
+    }
 
-  if (fread(buf, buflen, 1, f) != 1) {
-    dperror("memrequest: fread");
-    fclose(f);
-    return -1;
+    if (fread(buf, buflen, 1, f) != 1) {
+      dperror("memrequest: fread");
+      fclose(f);
+      return -1;
+    }
   }
 
   fclose(f);
This page took 0.070254 seconds and 5 git commands to generate.