]> andersk Git - libfaim.git/blobdiff - utils/faimtest/faimtest.c
- Mon Apr 23 15:58:11 PDT 2001
[libfaim.git] / utils / faimtest / faimtest.c
index ec10485303d857a72d91ade469c0d594deafc346..b5d90767c359578d25a538ab4814ee3bd4215fca 100644 (file)
@@ -797,25 +797,56 @@ int faimtest_handleredirect(struct aim_session_t *sess, struct command_rx_struct
   return 1;
 }
 
-static int getaimdata(unsigned char *buf, int buflen, unsigned long offset)
+static int getaimdata(unsigned char *buf, int buflen, unsigned long offset, const char *modname)
 {
   FILE *f;
+  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))) {
+      dperror("memrequest: malloc");
+      return -1;
+    }
+
+    sprintf(filename, "%s/%s.ocm", aimbinarypath, modname);
+
+  } else {
+
+    if (!(filename = malloc(strlen(aimbinarypath)+1+strlen(defaultmod)+1))) {
+      dperror("memrequest: malloc");
+      return -1;
+    }
+
+    sprintf(filename, "%s/%s", aimbinarypath, defaultmod);
 
-  if (!(f = fopen(aimbinarypath, "r"))) {
-    dperror("memrequest: fopen");
-    return -1;
   }
 
-  if (fseek(f, offset, SEEK_SET) == -1) {
-    dperror("memrequest: fseek");
-    fclose(f);
+  dvprintf("memrequest: loading %d bytes from 0x%08lx in \"%s\"...\n", buflen, offset, filename);
+
+  if (!(f = fopen(filename, "r"))) {
+    dperror("memrequest: fopen");
+    free(filename);
     return -1;
   }
 
-  if (fread(buf, buflen, 1, f) != 1) {
-    dperror("memrequest: fread");
-    fclose(f);
-    return -1;
+  free(filename);
+
+  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;
+    }
   }
 
   fclose(f);
@@ -835,10 +866,12 @@ static int faimtest_memrequest(struct aim_session_t *sess, struct command_rx_str
   va_list ap;
   unsigned long offset, len;
   unsigned char *buf;
+  char *modname;
   
   va_start(ap, command);
   offset = va_arg(ap, unsigned long);
   len = va_arg(ap, unsigned long);
+  modname = va_arg(ap, char *);
   va_end(ap);
 
   if (!(buf = malloc(len))) {
@@ -846,15 +879,13 @@ static int faimtest_memrequest(struct aim_session_t *sess, struct command_rx_str
     return 0;
   }
 
-  if (aimbinarypath && (getaimdata(buf, len, offset) == len)) {
-
-    dvprintf("memrequest: sending %ld bytes from 0x%08lx in %s...\n", len, offset, aimbinarypath);
+  if (aimbinarypath && (getaimdata(buf, len, offset, modname) == len)) {
 
     aim_sendmemblock(sess, command->conn, offset, len, buf);
 
   } else {
 
-    dprintf("memrequest: unable to use AIM binary, sending defaults...\n");
+    dvprintf("memrequest: unable to use AIM binary (\"%s/%s\"), sending defaults...\n", aimbinarypath, modname);
 
     aim_sendmemblock(sess, command->conn, offset, len, NULL);
 
This page took 1.194418 seconds and 4 git commands to generate.