]> andersk Git - libfaim.git/blobdiff - utils/faimtest/faimtest.c
- Mon Sep 3 18:48:26 PDT 2001
[libfaim.git] / utils / faimtest / faimtest.c
index 0c8264a0acf835b57cff7cbb8cd5f35769e4cda9..2ad710b3999c479aeb06914b06996d2493cd9c87 100644 (file)
 /* 
- *  -----------------------------------------------------------
- *  ProtoFAIM: v1.xx.xxplxx
- *  -----------------------------------------------------------
+ *  faimtest.
  *
- *  This is ProtoFAIM v1.xx.xxplxx!!! Its nearly completely 
- *  different than that ugly thing called v0.  This app is
- *  compatible with the latest version of the libfaim library.
- *  Work is continuing. 
+ *  The point of faimtest is twofold:
+ *     - Test the functionality of libfaim.
+ *     - Demonstrate the functionality of libfaim and how to use it.
  *
- *  ProtoFAIM should only be used for two things...
- *   1) Testing the libfaim backend.
- *   2) For reference on the libfaim API when developing clients.
- * 
- *  Its very ugly.  Probably always will be.  Nothing is more
- *  ugly than the backend itself, however.
+ *  It does the latter rather badly, and the first as best it can without a
+ *  more realistic UI.  libfaim has a slightly different event model than
+ *  many C programmers are used to, which is why I provide faimtest as
+ *  documentation instead of attempting to explain how it works in English.
+ *  If you're still in need of more guidance, see the source for the OSCAR
+ *  "plugin" in gaim.  It does it nicely, and in a realistic situation. (Did
+ *  I mention faimtest is a bit idealized?)
  *
- *  -----------------------------------------------------------
+ *  The faimtest code is very ugly.  Probably always will be.  
  *
- *  I'm releasing this code and all it's associated linkage
- *  under the GNU General Public License.  For more information,
- *  please refer to http://www.fsf.org.  For any questions,
- *  please contact me at the address below.
- *
- *  Most everything:
- *  (c) 1998 Adam Fritzler, PST, mid@zigamoprh.net
- *
- *  The password algorithms
- *  (c) 1998 Brock Wilcox, awwaiid@zigamorph.net
- *
- *  THERE IS NO CODE FROM AOL'S AIM IN THIS CODE, NOR
- *  WAS THERE ANY DISASSEMBLAGE TO DEFINE PROTOCOL.  All
- *  information was gained through painstakingly comparing
- *  TCP dumps while the AIM Java client was running.  Nothing
- *  more than that, except for a lot of experimenting.
- *
- *  -----------------------------------------------------------
+ *  Note that faimtest does not do a lot of error checking, except perhaps
+ *  on some libfaim funtions.  This is done for clarity, in hopes of
+ *  making this crap ever so slighly more readable.
  *
  */
 
 #include "faimtest.h"
 #include <sys/stat.h>
 
-static char *dprintf_ctime(void)
+char *dprintf_ctime(void)
 {
-  static char retbuf[64];
-  struct tm *lt;
-  struct timeval tv;
-  struct timezone tz;
-
-  gettimeofday(&tv, &tz);
-  lt = localtime((time_t *)&tv.tv_sec);
-  strftime(retbuf, 64, "%a %b %e %H:%M:%S %Z %Y", lt);
-  return retbuf;
-}
+       static char retbuf[64];
+       struct tm *lt;
+       struct timeval tv;
+       struct timezone tz;
 
-#define DPRINTF_OUTSTREAM stdout
-#define dprintf(x) { \
-  fprintf(DPRINTF_OUTSTREAM, "%s  %s: " x, dprintf_ctime(), "faimtest"); \
-  fflush(DPRINTF_OUTSTREAM); \
-}
-#define dvprintf(x, y...) { \
-  fprintf(DPRINTF_OUTSTREAM, "%s  %s: " x, dprintf_ctime(), "faimtest", y); \
-  fflush(DPRINTF_OUTSTREAM); \
-}
-#define dinlineprintf(x) { \
-  fprintf(DPRINTF_OUTSTREAM, x); \
-  fflush(DPRINTF_OUTSTREAM); \
-}
-#define dvinlineprintf(x, y...) { \
-  fprintf(DPRINTF_OUTSTREAM, x, y); \
-  fflush(DPRINTF_OUTSTREAM); \
+       gettimeofday(&tv, &tz);
+       lt = localtime((time_t *)&tv.tv_sec);
+       strftime(retbuf, 64, "%a %b %e %H:%M:%S %Z %Y", lt);
+
+       return retbuf;
 }
-#define dperror(x) dvprintf("%s: %s\n", x, strerror(errno));
-
-int faimtest_parse_oncoming(struct aim_session_t *, struct command_rx_struct *, ...);
-int faimtest_parse_offgoing(struct aim_session_t *, struct command_rx_struct *, ...);
-int faimtest_parse_login_phase3d_f(struct aim_session_t *, struct command_rx_struct *, ...);
-static int faimtest_parse_authresp(struct aim_session_t *, struct command_rx_struct *, ...);
-int faimtest_parse_incoming_im(struct aim_session_t *, struct command_rx_struct *command, ...);
-int faimtest_parse_userinfo(struct aim_session_t *, struct command_rx_struct *command, ...);
-int faimtest_handleredirect(struct aim_session_t *, struct command_rx_struct *command, ...);
-int faimtest_infochange(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_serverready(struct aim_session_t *, struct command_rx_struct *command, ...);
-int faimtest_hostversions(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_parse_misses(struct aim_session_t *, struct command_rx_struct *command, ...);
-int faimtest_parse_msgack(struct aim_session_t *, struct command_rx_struct *command, ...);
-int faimtest_parse_motd(struct aim_session_t *, struct command_rx_struct *command, ...);
-int faimtest_parse_login(struct aim_session_t *, struct command_rx_struct *command, ...);
-int faimtest_chatnav_info(struct aim_session_t *, struct command_rx_struct *command, ...);
-int faimtest_chat_incomingmsg(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_chat_infoupdate(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_chat_leave(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_chat_join(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_parse_connerr(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_debugconn_connect(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-
-int faimtest_directim_request(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_directim_initiate(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_directim_connect(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_directim_incoming(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_directim_disconnect(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_directim_typing(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-
-int faimtest_getfile_filereq(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_getfile_filesend(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_getfile_complete(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_getfile_disconnect(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_getfile_initiate(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_getfile_listing(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_getfile_listingreq(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_getfile_receive(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_getfile_state4(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-
-int faimtest_parse_ratechange(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_parse_evilnotify(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_parse_searcherror(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_parse_searchreply(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_parse_msgerr(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_parse_buddyrights(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_parse_locerr(struct aim_session_t *sess, struct command_rx_struct *command, ...);
-int faimtest_parse_genericerr(struct aim_session_t *sess, struct command_rx_struct *command, ...);
 
 static char *msgerrreasons[] = {
-  "Invalid error",
-  "Invalid SNAC",
-  "Rate to host",
-  "Rate to client",
-  "Not logged on",
-  "Service unavailable",
-  "Service not defined",
-  "Obsolete SNAC",
-  "Not supported by host",
-  "Not supported by client",
-  "Refused by client",
-  "Reply too big",
-  "Responses lost",
-  "Request denied",
-  "Busted SNAC payload",
-  "Insufficient rights",
-  "In local permit/deny",
-  "Too evil (sender)",
-  "Too evil (receiver)",
-  "User temporarily unavailable",
-  "No match",
-  "List overflow",
-  "Request ambiguous",
-  "Queue full",
-  "Not while on AOL"};
+       "Invalid error",
+       "Invalid SNAC",
+       "Rate to host",
+       "Rate to client",
+       "Not logged on",
+       "Service unavailable",
+       "Service not defined",
+       "Obsolete SNAC",
+       "Not supported by host",
+       "Not supported by client",
+       "Refused by client",
+       "Reply too big",
+       "Responses lost",
+       "Request denied",
+       "Busted SNAC payload",
+       "Insufficient rights",
+       "In local permit/deny",
+       "Too evil (sender)",
+       "Too evil (receiver)",
+       "User temporarily unavailable",
+       "No match",
+       "List overflow",
+       "Request ambiguous",
+       "Queue full",
+       "Not while on AOL",
+};
 static int msgerrreasonslen = 25;
 
-static char *aimbinarypath = NULL;
-static char *screenname,*password,*server=NULL;
-static char *proxy = NULL, *proxyusername = NULL, *proxypass = NULL;
-static char *ohcaptainmycaptain = NULL;
-static int connected = 0;
-
-struct aim_session_t aimsess;
+aim_session_t aimsess;
 int keepgoing = 1;
 
-static FILE *listingfile;
-static char *listingpath;
-
-static unsigned char *buddyicon = NULL;
-static int buddyiconlen = 0;
-static time_t buddyiconstamp = 0;
-static unsigned short buddyiconsum = 0;
-
-static void faimtest_debugcb(struct aim_session_t *sess, int level, const char *format, va_list va)
+/* 
+ * This is used to intercept debugging/diagnostic messages from libfaim.
+ *
+ * Note that you should have one of these even if you use a debuglevel of
+ * zero, as libfaim will send serious errors to stderr by default.
+ *
+ */
+static void faimtest_debugcb(aim_session_t *sess, int level, const char *format, va_list va)
 {
 
        vfprintf(stderr, format, va);
@@ -174,47 +85,20 @@ static void faimtest_debugcb(struct aim_session_t *sess, int level, const char *
        return;
 }
 
-int faimtest_reportinterval(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{
-       va_list ap;
-       unsigned short interval = 0;
-
-       va_start(ap, command);
-       interval = va_arg(ap, int);
-       va_end(ap);
-
-       dvprintf("aim: minimum report interval: %d (seconds?)\n", interval);
-
-       if (!connected)
-               connected++;
-
-#if 0
-       aim_bos_reqservice(sess, command->conn, 0x0005); /* adverts */
-       aim_bos_reqservice(sess, command->conn, 0x000f); /* user directory */
-
-       /* Don't know what this does... */
-       /* XXX sess->sn should be normalized by the 0001/000f handler */
-       aim_0002_000b(sess, command->conn, sess->sn);
-#endif
-
-       aim_reqicbmparams(sess, command->conn);
-
-       return 1;
-}
-
-int faimtest_flapversion(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+int faimtest_flapversion(aim_session_t *sess, aim_frame_t *fr, ...)
 {
 
-       dvprintf("faimtest: using FLAP version %u\n", aimutil_get32(command->data));
+       /* XXX fix libfaim to support this */
+       dvprintf("using FLAP version 0x%08x\n", /* aimutil_get32(fr->data)*/ 0xffffffff);
 
 #if 0
        /* 
         * This is an alternate location for starting the login process.
         */
        /* XXX should do more checking to make sure its really the right AUTH conn */
-       if (command->conn->type == AIM_CONN_TYPE_AUTH) {
+       if (fr->conn->type == AIM_CONN_TYPE_AUTH) {
                /* do NOT send a flapversion, request_login will send it if needed */
-               aim_request_login(sess, command->conn, screenname);
+               aim_request_login(sess, fr->conn, priv->screenname);
                dprintf("faimtest: login request sent\n");
        }
 #endif
@@ -230,13 +114,13 @@ int faimtest_flapversion(struct aim_session_t *sess, struct command_rx_struct *c
  * will be queued and then transmitted when the connection completes.
  *
  */
-int faimtest_conncomplete(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+int faimtest_conncomplete(aim_session_t *sess, aim_frame_t *fr, ...)
 {
        va_list ap;
-       struct aim_conn_t *conn;
+       aim_conn_t *conn;
 
-       va_start(ap, command);
-       conn = va_arg(ap, struct aim_conn_t *);
+       va_start(ap, fr);
+       conn = va_arg(ap, aim_conn_t *);
        va_end(ap);
 
        if (conn)
@@ -250,9 +134,9 @@ int faimtest_conncomplete(struct aim_session_t *sess, struct command_rx_struct *
  * This is really all thats needed to link against libfaim on win32.
  *
  * Note that this particular version of faimtest has never been tested
- * on win32, but I'm fairly sure it should.
+ * on win32, but I'm fairly sure it should work.
  */
-int initwsa(void)
+static int initwsa(void)
 {
        WORD wVersionRequested;
        WSADATA wsaData;
@@ -262,9 +146,12 @@ int initwsa(void)
 }
 #endif /* _WIN32 */
 
+/*
+ * This is unrealistic.  Most clients will not be able to do this.
+ */
 int faimtest_init(void)
 {
-       struct aim_conn_t *stdinconn = NULL;
+       aim_conn_t *stdinconn = NULL;
 
        if (!(stdinconn = aim_newconn(&aimsess, 0, NULL))) {
                dprintf("unable to create connection for stdin!\n");
@@ -276,96 +163,45 @@ int faimtest_init(void)
        return 0;
 }
 
-int logout(void)
-{
-
-       if (ohcaptainmycaptain)
-               aim_send_im(&aimsess, aim_getconn_type(&aimsess, AIM_CONN_TYPE_BOS), ohcaptainmycaptain, 0, "ta ta...");
-
-       aim_session_kill(&aimsess);
-
-       if (faimtest_init() == -1)
-               dprintf("faimtest_init failed\n");
-
-       return 0;
-}
-
-int login(const char *sn, const char *passwd)
-{
-       struct aim_conn_t *authconn;
-
-       if (sn)
-               screenname = strdup(sn);
-       if (passwd)
-               password = strdup(passwd);
-
-       if (proxy)
-               aim_setupproxy(&aimsess, proxy, proxyusername, proxypass);
-
-       if (!screenname || !password) {
-               dprintf("need SN and password\n");
-               return -1;
-       }
-
-       if (!(authconn = aim_newconn(&aimsess, AIM_CONN_TYPE_AUTH, server?server:FAIM_LOGIN_SERVER))) {
-               dprintf("faimtest: internal connection error while in aim_login.  bailing out.\n");
-               return -1;
-       } else if (authconn->fd == -1) {
-               if (authconn->status & AIM_CONN_STATUS_RESOLVERR) {
-                       dprintf("faimtest: could not resolve authorizer name\n");
-               } else if (authconn->status & AIM_CONN_STATUS_CONNERR) {
-                       dprintf("faimtest: could not connect to authorizer\n");
-               }
-               aim_conn_kill(&aimsess, &authconn);
-               return -1;
-       }
-
-       aim_conn_addhandler(&aimsess, authconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_FLAPVER, faimtest_flapversion, 0);
-       aim_conn_addhandler(&aimsess, authconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNCOMPLETE, faimtest_conncomplete, 0);
-       aim_conn_addhandler(&aimsess, authconn, 0x0017, 0x0007, faimtest_parse_login, 0);
-       aim_conn_addhandler(&aimsess, authconn, 0x0017, 0x0003, faimtest_parse_authresp, 0);    
-
-       aim_conn_addhandler(&aimsess, authconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_DEBUGCONN_CONNECT, faimtest_debugconn_connect, 0);
-
-       /* If the connection is in progress, this will just be queued */
-       aim_request_login(&aimsess, authconn, screenname);
-       dprintf("faimtest: login request sent\n");
-
-       return 0;
-}
-
 int main(int argc, char **argv)
 {
-       struct aim_conn_t *waitingconn = NULL;
+       aim_conn_t *waitingconn = NULL;
        int i;
        int selstat = 0;
        static int faimtest_mode = 0;
        struct timeval tv;
        time_t lastnop = 0;
        const char *buddyiconpath = NULL;
+       struct faimtest_priv priv = {
+               NULL, NULL, NULL, NULL,
+               NULL, NULL, NULL, NULL,
+               0,
+               NULL, NULL,
+               NULL, 0, 0, 0
+       };
 
-       screenname = getenv("SCREENNAME");
-       password = getenv("PASSWORD");
-       server = getenv("AUTHSERVER");
-       proxy = getenv("SOCKSPROXY");
-       proxyusername = getenv("SOCKSNAME");
-       proxypass = getenv("SOCKSPASS");
+       priv.screenname = getenv("SCREENNAME");
+       priv.password = getenv("PASSWORD");
+       priv.server = getenv("AUTHSERVER");
+       priv.proxy = getenv("SOCKSPROXY");
+       priv.proxyusername = getenv("SOCKSNAME");
+       priv.proxypass = getenv("SOCKSPASS");
 
-       listingpath = getenv("LISTINGPATH");
+       priv.listingpath = getenv("LISTINGPATH");
 
        while ((i = getopt(argc, argv, "u:p:a:U:P:A:l:c:hoOb:i:")) != EOF) {
                switch (i) {
-               case 'u': screenname = optarg; break;
-               case 'p': password = optarg; break;
-               case 'a': server = optarg; break;
-               case 'U': proxyusername = optarg; break;
-               case 'P': proxypass = optarg; break;
-               case 'A': proxy = optarg; break;
-               case 'l': listingpath = optarg; break;
-               case 'c': ohcaptainmycaptain = optarg; break;
+               case 'u': priv.screenname = optarg; break;
+               case 'p': priv.password = optarg; break;
+               case 'a': priv.server = optarg; break;
+               case 'U': priv.proxyusername = optarg; break;
+               case 'P': priv.proxypass = optarg; break;
+               case 'A': priv.proxy = optarg; break;
+               case 'l': priv.listingpath = optarg; break;
+               case 'c': priv.ohcaptainmycaptain = optarg; break;
                case 'o': faimtest_mode = 1; break; /* half old interface */
                case 'O': faimtest_mode = 2; break; /* full old interface */
-               case 'b': aimbinarypath = optarg; break;
+               case 'b': priv.aimbinarypath = optarg; break;
                case 'i': buddyiconpath = optarg; break;
                case 'h':
                default:
@@ -397,18 +233,15 @@ int main(int argc, char **argv)
        /* Pass zero as flags if you want blocking connects */
        aim_session_init(&aimsess, AIM_SESS_FLAGS_NONBLOCKCONNECT, 1);
        aim_setdebuggingcb(&aimsess, faimtest_debugcb); /* still needed even if debuglevel = 0 ! */
+       aimsess.aux_data = &priv;
 
-       if (listingpath) {
+       if (priv.listingpath) {
                char *listingname;
                
-               if (!(listingname = (char *)calloc(1, strlen(listingpath)+strlen("/listing.txt")))) {
-                       dperror("listingname calloc");
-                       exit(-1);
-               }
-
-               sprintf(listingname, "%s/listing.txt", listingpath);
+               listingname = (char *)calloc(1, strlen(priv.listingpath)+strlen("/listing.txt"));
+               sprintf(listingname, "%s/listing.txt", priv.listingpath);
                
-               if ((listingfile = fopen(listingname, "r")) == NULL)
+               if ((priv.listingfile = fopen(listingname, "r")) == NULL)
                        dvprintf("Couldn't open %s... disabling that shit.\n", listingname);
 
                free(listingname);
@@ -420,14 +253,14 @@ int main(int argc, char **argv)
 
                if ((stat(buddyiconpath, &st) != -1) && (st.st_size <= MAXICONLEN) && (f = fopen(buddyiconpath, "r"))) {
 
-                       buddyiconlen = st.st_size;
-                       buddyiconstamp = st.st_mtime;
-                       buddyicon = malloc(buddyiconlen);
-                       fread(buddyicon, 1, st.st_size, f);
+                       priv.buddyiconlen = st.st_size;
+                       priv.buddyiconstamp = st.st_mtime;
+                       priv.buddyicon = malloc(priv.buddyiconlen);
+                       fread(priv.buddyicon, 1, st.st_size, f);
 
-                       buddyiconsum = aim_iconsum(buddyicon, buddyiconlen);
+                       priv.buddyiconsum = aim_iconsum(priv.buddyicon, priv.buddyiconlen);
 
-                       dvprintf("read %d bytes of %s for buddy icon (sum 0x%08x)\n", buddyiconlen, buddyiconpath, buddyiconsum);
+                       dvprintf("read %d bytes of %s for buddy icon (sum 0x%08x)\n", priv.buddyiconlen, buddyiconpath, priv.buddyiconsum);
 
                        fclose(f);
 
@@ -442,7 +275,7 @@ int main(int argc, char **argv)
                cmd_init();
 
        if (faimtest_mode >= 1) {
-               if (login(screenname, password) == -1) {
+               if (login(&aimsess, priv.screenname, priv.password) == -1) {
                        if (faimtest_mode < 2)
                                cmd_uninit();
                        exit(-1);
@@ -451,12 +284,13 @@ int main(int argc, char **argv)
 
        while (keepgoing) {
 
+               /* XXX uh. */
                tv.tv_sec = 5;
                tv.tv_usec = 0;
 
                waitingconn = aim_select(&aimsess, &tv, &selstat);
 
-               if (connected && ((time(NULL) - lastnop) > 30)) {
+               if (priv.connected && ((time(NULL) - lastnop) > 30)) {
                        lastnop = time(NULL);
                        aim_flap_nop(&aimsess, aim_getconn_type(&aimsess, AIM_CONN_TYPE_BOS));
                }
@@ -472,10 +306,12 @@ int main(int argc, char **argv)
                                cmd_gotkey();
                        } else {
                                if (waitingconn->type == AIM_CONN_TYPE_RENDEZVOUS_OUT) {
+#if 0
                                        if (aim_handlerendconnect(&aimsess, waitingconn) < 0) {
                                                dprintf("connection error (rend out)\n");
                                                aim_conn_kill(&aimsess, &waitingconn);
                                        }
+#endif
                                } else {
                                        if (aim_get_command(&aimsess, waitingconn) >= 0) {
                                                aim_rxdispatch(&aimsess);
@@ -506,65 +342,229 @@ int main(int argc, char **argv)
                cmd_uninit();
        }
 
-       free(buddyicon);
+       free(priv.buddyicon);
 
        /* Get out */
        exit(0);
 }
 
-int faimtest_rateresp(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+int faimtest_serverready(aim_session_t *sess, aim_frame_t *fr, ...)
 {
+       int famcount, i;
+       fu16_t *families;
+       va_list ap;
 
-       switch(command->conn->type) {
-       case AIM_CONN_TYPE_BOS: {
-               /* this is the new buddy list */
-               char buddies[128];
-               /* this is the new profile */
-               char profile[256];
-               char awaymsg[] = {"blah blah blah Ole! blah blah blah"};
+       va_start(ap, fr);
+       famcount = va_arg(ap, int);
+       families = va_arg(ap, fu16_t *);
+       va_end(ap);
+
+       dvprintf("faimtest: SNAC families supported by this host (type %d): ", fr->conn->type);
+       for (i = 0; i < famcount; i++)
+               dvinlineprintf("0x%04x ", families[i]);
+       dinlineprintf("\n");
 
-               /* Caution: Buddy1 and Buddy2 are real people! (who I don't know) */
-               snprintf(buddies, sizeof(buddies), "Buddy1&Buddy2&%s&", ohcaptainmycaptain?ohcaptainmycaptain:"blah");
-               snprintf(profile, sizeof(profile), "Hello.<br>My captain is %s.  They were dumb enough to leave this message in their client, or they are using faimtest.  Shame on them.", ohcaptainmycaptain);
+       if (fr->conn->type == AIM_CONN_TYPE_AUTH) {
 
-               aim_bos_ackrateresp(sess, command->conn);  /* ack rate info response */
-               aim_bos_reqpersonalinfo(sess, command->conn);
-               aim_bos_reqlocaterights(sess, command->conn);
-               aim_bos_setprofile(sess, command->conn, profile, awaymsg, AIM_CAPS_BUDDYICON | AIM_CAPS_CHAT | AIM_CAPS_GETFILE | AIM_CAPS_SENDFILE | AIM_CAPS_IMIMAGE /*| AIM_CAPS_GAMES | AIM_CAPS_SAVESTOCKS*/);
-               aim_bos_reqbuddyrights(sess, command->conn);
+               aim_auth_setversions(sess, fr->conn);
+               aim_bos_reqrate(sess, fr->conn); /* request rate info */
 
-               /* send the buddy list and profile (required, even if empty) */
-               aim_bos_setbuddylist(sess, command->conn, buddies);
+               dprintf("done with auth server ready\n");
 
-               aim_reqicbmparams(sess, command->conn);  
+       } else if (fr->conn->type == AIM_CONN_TYPE_BOS) {
 
-               aim_bos_reqrights(sess, command->conn);  
-               /* set group permissions -- all user classes */
-               aim_bos_setgroupperm(sess, command->conn, AIM_FLAG_ALLUSERS);
-               aim_bos_setprivacyflags(sess, command->conn, AIM_PRIVFLAGS_ALLOWIDLE);
+               aim_setversions(sess, fr->conn);
+               aim_bos_reqrate(sess, fr->conn); /* request rate info */
 
-               break;  
+               dprintf("done with BOS server ready\n");
        }
-       case AIM_CONN_TYPE_AUTH:
-               aim_bos_ackrateresp(sess, command->conn);
-               aim_auth_clientready(sess, command->conn);
-               dprintf("faimtest: connected to authorization/admin service\n");
-               break;
-
-       default: 
-               dvprintf("faimtest: got rate response for unhandled connection type %04x\n", command->conn->type);
-               break;
+
+       return 1;
+}
+
+int faimtest_parse_connerr(aim_session_t *sess, aim_frame_t *fr, ...)
+{
+       struct faimtest_priv *priv = (struct faimtest_priv *)sess->aux_data;
+       va_list ap;
+       fu16_t code;
+       char *msg;
+
+       va_start(ap, fr);
+       code = va_arg(ap, int);
+       msg = va_arg(ap, char *);
+       va_end(ap);
+
+       dvprintf("connerr: Code 0x%04x: %s\n", code, msg);
+       aim_conn_kill(sess, &fr->conn); /* this will break the main loop */
+
+       priv->connected = 0;
+
+       return 1;
+}
+
+#if 0
+static int faimtest_rateresp_auth(aim_session_t *sess, aim_frame_t *fr, ...)
+{
+
+       aim_bos_ackrateresp(sess, fr->conn);
+       aim_auth_clientready(sess, fr->conn);
+
+       dprintf("faimtest: connected to authorization/admin service\n");
+
+       return 1;
+}
+
+int faimtest_accountconfirm(aim_session_t *sess, aim_frame_t *fr, ...)
+{
+       int status;
+       va_list ap;
+
+       va_start(ap, fr);
+       status = va_arg(ap, int); /* status code of confirmation request */
+       va_end(ap);
+
+       dvprintf("account confirmation returned status 0x%04x (%s)\n", status, (status==0x0000)?"email sent":"unknown");
+
+       return 1;
+}
+
+
+#endif
+
+#if 0
+/* 
+ * This kind of function is really not legal in the new bstream way...
+ * In fact, clients should never access the aim_frame_t directly in handlers,
+ * since that may leave it in a bizare state for the lower layers.  In fact,
+ * clients should probably not even get passed a pointer like this.
+ *
+ */
+int faimtest_parse_unknown(aim_session_t *sess, aim_frame_t *fr, ...)
+{
+       int i;
+
+       aim_bstream_rewind(&fr->data); /* boo! */
+
+       dprintf("\nReceived unknown packet:");
+       for (i = 0; aim_bstream_empty(&fr->data); i++) {
+               if ((i % 8) == 0)
+                       dinlineprintf("\n\t");
+               dvinlineprintf("0x%2x ", aimbs_get8(&fr->data));
        }
+       dinlineprintf("\n\n");
 
        return 1;
 }
+#endif
 
-static int faimtest_icbmparaminfo(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+int faimtest_handleredirect(aim_session_t *sess, aim_frame_t *fr, ...)
+{
+       va_list ap;
+       int serviceid;
+       char *ip;
+       fu8_t *cookie;
+
+       va_start(ap, fr);
+       serviceid = va_arg(ap, int);
+       ip = va_arg(ap, char *);
+       cookie = va_arg(ap, fu8_t *);
+
+       if (serviceid == 0x0005) {  /* Adverts */
+#if 0
+               aim_conn_t *tstconn;
+
+               tstconn = aim_newconn(sess, AIM_CONN_TYPE_ADS, ip);
+               if (!tstconn || (tstconn->status & AIM_CONN_STATUS_RESOLVERR)) {
+                       dprintf("faimtest: unable to reconnect with authorizer\n");
+               } else {
+                       aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_FLAPVER, faimtest_flapversion, 0);
+                       aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNCOMPLETE, faimtest_conncomplete, 0);
+                       aim_conn_addhandler(sess, tstconn, 0x0001, 0x0003, faimtest_serverready, 0);
+                       aim_conn_addhandler(sess, tstconn, 0x0001, 0x0007, faimtest_rateresp, 0); /* rate info */
+                       aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_GEN, 0x0018, faimtest_hostversions, 0);
+                       aim_auth_sendcookie(sess, tstconn, cookie);
+                       dprintf("sent cookie to adverts host\n");
+               }
+#endif
+       } else if (serviceid == 0x0007) {  /* Authorizer */
+#if 0
+               aim_conn_t *tstconn;
+               
+               tstconn = aim_newconn(sess, AIM_CONN_TYPE_AUTH, ip);
+               if (!tstconn || (tstconn->status & AIM_CONN_STATUS_RESOLVERR)) {
+                       dprintf("faimtest: unable to reconnect with authorizer\n");
+               } else {
+                       aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_FLAPVER, faimtest_flapversion, 0);
+                       aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNCOMPLETE, faimtest_conncomplete, 0);
+                       aim_conn_addhandler(sess, tstconn, 0x0001, 0x0003, faimtest_serverready, 0);
+                       aim_conn_addhandler(sess, tstconn, 0x0001, 0x0007, faimtest_rateresp, 0); /* rate info */
+                       aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_GEN, 0x0018, faimtest_hostversions, 0);
+                       aim_conn_addhandler(sess, tstconn, 0x0007, 0x0007, faimtest_accountconfirm, 0);
+                       aim_conn_addhandler(sess, tstconn, 0x0007, 0x0003, faimtest_infochange, 0);
+                       aim_conn_addhandler(sess, tstconn, 0x0007, 0x0005, faimtest_infochange, 0);
+                       /* Send the cookie to the Auth */
+                       aim_auth_sendcookie(sess, tstconn, cookie);
+                       dprintf("sent cookie to authorizer host\n");
+               }
+#endif
+       } else if (serviceid == 0x000d) {  /* ChatNav */
+
+               chatnav_redirect(sess, ip, cookie);
+               
+       } else if (serviceid == 0x000e) { /* Chat */
+               char *roomname = NULL;
+               int exchange;
+
+               roomname = va_arg(ap, char *);
+               exchange = va_arg(ap, int);
+
+               chat_redirect(sess, ip, cookie, roomname, exchange);
+
+       } else {
+               dvprintf("uh oh... got redirect for unknown service 0x%04x!!\n", serviceid);
+       }
+
+       va_end(ap);
+
+       return 1;
+}
+
+static int faimtest_rateresp_bos(aim_session_t *sess, aim_frame_t *fr, ...)
+{
+       struct faimtest_priv *priv = (struct faimtest_priv *)sess->aux_data;
+       char buddies[128]; /* this is the new buddy list */
+       char profile[256]; /* this is the new profile */ 
+       char awaymsg[] = {"blah blah blah Ole! blah blah blah"};
+
+       /* Caution: Buddy1 and Buddy2 are real people! (who I don't know) */
+       snprintf(buddies, sizeof(buddies), "Buddy1&Buddy2&%s&", priv->ohcaptainmycaptain ? priv->ohcaptainmycaptain : "blah");
+       snprintf(profile, sizeof(profile), "Hello.<br>My captain is %s.  They were dumb enough to leave this message in their client, or they are using faimtest.  Shame on them.", priv->ohcaptainmycaptain);
+
+       aim_bos_ackrateresp(sess, fr->conn);  /* ack rate info response */
+       aim_bos_reqpersonalinfo(sess, fr->conn);
+       aim_bos_reqlocaterights(sess, fr->conn);
+       aim_bos_setprofile(sess, fr->conn, profile, awaymsg, AIM_CAPS_BUDDYICON | AIM_CAPS_CHAT | AIM_CAPS_GETFILE | AIM_CAPS_SENDFILE | AIM_CAPS_IMIMAGE /*| AIM_CAPS_GAMES | AIM_CAPS_SAVESTOCKS*/);
+       aim_bos_reqbuddyrights(sess, fr->conn);
+
+       /* send the buddy list and profile (required, even if empty) */
+       aim_bos_setbuddylist(sess, fr->conn, buddies);
+
+       aim_reqicbmparams(sess, fr->conn);  
+
+       aim_bos_reqrights(sess, fr->conn);  
+       /* set group permissions -- all user classes */
+       aim_bos_setgroupperm(sess, fr->conn, AIM_FLAG_ALLUSERS);
+       aim_bos_setprivacyflags(sess, fr->conn, AIM_PRIVFLAGS_ALLOWIDLE);
+
+       return 1;
+}
+
+static int faimtest_icbmparaminfo(aim_session_t *sess, aim_frame_t *fr, ...)
 {
        struct aim_icbmparameters *params;
        va_list ap;
 
-       va_start(ap, command);
+       va_start(ap, fr);
        params = va_arg(ap, struct aim_icbmparameters *);
        va_end(ap);
 
@@ -579,20 +579,20 @@ static int faimtest_icbmparaminfo(struct aim_session_t *sess, struct command_rx_
        params->maxmsglen = 8000;
        params->minmsginterval = 0; /* in milliseconds */
 
-       aim_seticbmparam(sess, command->conn, params);
+       aim_seticbmparam(sess, fr->conn, params);
 
        return 1;
 }
 
-int faimtest_hostversions(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+static int faimtest_hostversions(aim_session_t *sess, aim_frame_t *fr, ...)
 {
        int vercount, i;
-       unsigned char *versions;
+       fu8_t *versions;
        va_list ap;
 
-       va_start(ap, command);
+       va_start(ap, fr);
        vercount = va_arg(ap, int); /* number of family/version pairs */
-       versions = va_arg(ap, unsigned char *);
+       versions = va_arg(ap, fu8_t *);
        va_end(ap);
 
        dprintf("faimtest: SNAC versions supported by this host: ");
@@ -606,264 +606,105 @@ int faimtest_hostversions(struct aim_session_t *sess, struct command_rx_struct *
        return 1;
 }
 
-int faimtest_accountconfirm(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+static int faimtest_parse_buddyrights(aim_session_t *sess, aim_frame_t *fr, ...)
 {
-       int status;
        va_list ap;
+       fu16_t maxbuddies, maxwatchers;
 
-       va_start(ap, command);
-       status = va_arg(ap, int); /* status code of confirmation request */
+       va_start(ap, fr);
+       maxbuddies = va_arg(ap, int);
+       maxwatchers = va_arg(ap, int);
        va_end(ap);
 
-       dvprintf("account confirmation returned status 0x%04x (%s)\n", status, (status==0x0000)?"email sent":"unknown");
+       dvprintf("buddy list rights: Max buddies = %d / Max watchers = %d\n", maxbuddies, maxwatchers);
 
        return 1;
 }
 
-int faimtest_serverready(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+static int faimtest_bosrights(aim_session_t *sess, aim_frame_t *fr, ...)
 {
-  int famcount, i;
-  unsigned short *families;
-  va_list ap;
-
-  va_start(ap, command);
-  famcount = va_arg(ap, int);
-  families = va_arg(ap, unsigned short *);
-  va_end(ap);
-
-  dvprintf("faimtest: SNAC families supported by this host (type %d): ", command->conn->type);
-  for (i = 0; i < famcount; i++)
-    dvinlineprintf("0x%04x ", families[i]);
-  dinlineprintf("\n");
-
-  switch (command->conn->type) {
-  case AIM_CONN_TYPE_AUTH:
-    aim_auth_setversions(sess, command->conn);
-    aim_bos_reqrate(sess, command->conn); /* request rate info */
-
-    dprintf("faimtest: done with auth ServerReady\n");
-    break;
-
-  case AIM_CONN_TYPE_BOS:
-
-    aim_setversions(sess, command->conn);
-    aim_bos_reqrate(sess, command->conn); /* request rate info */
-
-    dprintf("faimtest: done with BOS ServerReady\n");
-    break;
-
-  case AIM_CONN_TYPE_CHATNAV:
-    dprintf("faimtest: chatnav: got server ready\n");
-    aim_conn_addhandler(sess, command->conn, AIM_CB_FAM_CTN, AIM_CB_CTN_INFO, faimtest_chatnav_info, 0);
-    aim_bos_reqrate(sess, command->conn);
-    aim_bos_ackrateresp(sess, command->conn);
-    aim_chatnav_clientready(sess, command->conn);
-    aim_chatnav_reqrights(sess, command->conn);
-
-    break;
-
-  case AIM_CONN_TYPE_CHAT:
-    aim_conn_addhandler(sess, command->conn, AIM_CB_FAM_CHT, AIM_CB_CHT_USERJOIN, faimtest_chat_join, 0);
-    aim_conn_addhandler(sess, command->conn, AIM_CB_FAM_CHT, AIM_CB_CHT_USERLEAVE, faimtest_chat_leave, 0);
-    aim_conn_addhandler(sess, command->conn, AIM_CB_FAM_CHT, AIM_CB_CHT_ROOMINFOUPDATE, faimtest_chat_infoupdate, 0);
-    aim_conn_addhandler(sess, command->conn, AIM_CB_FAM_CHT, AIM_CB_CHT_INCOMINGMSG, faimtest_chat_incomingmsg, 0);
-    aim_bos_reqrate(sess, command->conn);
-    aim_bos_ackrateresp(sess, command->conn);
-    aim_chat_clientready(sess, command->conn);
-    break;
-
-  case AIM_CONN_TYPE_RENDEZVOUS: /* empty */
-    break;
-
-  default:
-    dvprintf("faimtest: unknown connection type on Host Online (0x%04x)\n", command->conn->type);
-  }
-
-  return 1;
-}
+       va_list ap;
+       fu16_t maxpermits, maxdenies;
 
-int faimtest_parse_buddyrights(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{
-  va_list ap;
-  unsigned short maxbuddies, maxwatchers;
+       va_start(ap, fr);
+       maxpermits = va_arg(ap, int);
+       maxdenies = va_arg(ap, int);
+       va_end(ap);
+
+       dvprintf("BOS rights: Max permit = %d / Max deny = %d\n", maxpermits, maxdenies);
 
-  va_start(ap, command);
-  maxbuddies = va_arg(ap, int);
-  maxwatchers = va_arg(ap, int);
-  va_end(ap);
+       aim_bos_clientready(sess, fr->conn);
 
-  dvprintf("faimtest: buddy list rights: Max buddies = %d / Max watchers = %d\n", maxbuddies, maxwatchers);
+       dprintf("officially connected to BOS.\n");
 
-  return 1;
+       return 1;
 }
 
-int faimtest_bosrights(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+static int faimtest_locrights(aim_session_t *sess, aim_frame_t *fr, ...)
 {
-  unsigned short maxpermits, maxdenies;
-  va_list ap;
-
-  va_start(ap, command);
-  maxpermits = va_arg(ap, int);
-  maxdenies = va_arg(ap, int);
-  va_end(ap);
-
-  dvprintf("faimtest: BOS rights: Max permit = %d / Max deny = %d\n", maxpermits, maxdenies);
+       va_list ap;
+       fu16_t maxsiglen;
 
-  aim_bos_clientready(sess, command->conn);
+       va_start(ap, fr);
+       maxsiglen = va_arg(ap, int);
+       va_end(ap);
 
-  dprintf("faimtest: officially connected to BOS.\n");
+       dvprintf("locate rights: max signature length = %d\n", maxsiglen);
 
-  return 1;
+       return 1;
 }
 
-int faimtest_locrights(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+static int faimtest_reportinterval(aim_session_t *sess, aim_frame_t *fr, ...)
 {
-  unsigned short maxsiglen;
-  va_list ap;
+       struct faimtest_priv *priv = (struct faimtest_priv *)sess->aux_data;
+       va_list ap;
+       fu16_t interval;
 
-  va_start(ap, command);
-  maxsiglen = va_arg(ap, int);
-  va_end(ap);
+       va_start(ap, fr);
+       interval = va_arg(ap, int);
+       va_end(ap);
 
-  dvprintf("faimtest: locate rights: max signature length = %d\n", maxsiglen);
+       dvprintf("minimum report interval: %d (seconds?)\n", interval);
 
-  return 1;
-}
+       if (!priv->connected)
+               priv->connected++;
 
-int faimtest_parse_unknown(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{
-  int i = 0;
+#if 0
+       aim_bos_reqservice(sess, fr->conn, 0x0005); /* adverts */
+       aim_bos_reqservice(sess, fr->conn, 0x000f); /* user directory */
 
-  if (!sess || !command)
-    return 1;
+       /* Don't know what this does... */
+       /* XXX sess->sn should be normalized by the 0001/000f handler */
+       aim_0002_000b(sess, fr->conn, sess->sn);
+#endif
 
-  dprintf("\nReceived unknown packet:");
-  for (i = 0; i < command->commandlen; i++) {
-    if ((i % 8) == 0)
-      dinlineprintf("\n\t");
-    dvinlineprintf("0x%2x ", command->data[i]);
-  }
-  dinlineprintf("\n\n");
+       aim_reqicbmparams(sess, fr->conn);
 
-  return 1;
+       return 1;
 }
 
-/*
-  handleredirect()...
-
-  This, of course, handles Service Redirects from OSCAR.
-
-  Should get passed in the following:
-     struct command_rx_struct *command
-       the raw command data
-     int serviceid
-       the destination service ID
-     char *serverip
-       the IP address of the service's server
-     char *cookie
-       the raw auth cookie
- */
-int faimtest_handleredirect(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+static int faimtest_parse_motd(aim_session_t *sess, aim_frame_t *fr, ...)
 {
-  va_list ap;
-  int serviceid;
-  char *ip;
-  unsigned char *cookie;
-
-  va_start(ap, command);
-  serviceid = va_arg(ap, int);
-  ip = va_arg(ap, char *);
-  cookie = va_arg(ap, unsigned char *);
-  switch(serviceid) {
-  case 0x0005: { /* Adverts */
-    struct aim_conn_t *tstconn;
-
-    tstconn = aim_newconn(sess, AIM_CONN_TYPE_ADS, ip);
-    if ((tstconn==NULL) || (tstconn->status & AIM_CONN_STATUS_RESOLVERR)) {
-      dprintf("faimtest: unable to reconnect with authorizer\n");
-    } else {
-      aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_FLAPVER, faimtest_flapversion, 0);
-      aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNCOMPLETE, faimtest_conncomplete, 0);
-      aim_conn_addhandler(sess, tstconn, 0x0001, 0x0003, faimtest_serverready, 0);
-      aim_conn_addhandler(sess, tstconn, 0x0001, 0x0007, faimtest_rateresp, 0); /* rate info */
-      aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_GEN, 0x0018, faimtest_hostversions, 0);
-      aim_auth_sendcookie(sess, tstconn, cookie);
-      dprintf("sent cookie to adverts host\n");
-    }
-    break;
-  }  
-  case 0x0007: { /* Authorizer */
-    struct aim_conn_t *tstconn;
-    /* Open a connection to the Auth */
-    tstconn = aim_newconn(sess, AIM_CONN_TYPE_AUTH, ip);
-    if ((tstconn==NULL) || (tstconn->status & AIM_CONN_STATUS_RESOLVERR)) {
-      dprintf("faimtest: unable to reconnect with authorizer\n");
-    } else {
-      aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_FLAPVER, faimtest_flapversion, 0);
-      aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNCOMPLETE, faimtest_conncomplete, 0);
-      aim_conn_addhandler(sess, tstconn, 0x0001, 0x0003, faimtest_serverready, 0);
-      aim_conn_addhandler(sess, tstconn, 0x0001, 0x0007, faimtest_rateresp, 0); /* rate info */
-      aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_GEN, 0x0018, faimtest_hostversions, 0);
-      aim_conn_addhandler(sess, tstconn, 0x0007, 0x0007, faimtest_accountconfirm, 0);
-      aim_conn_addhandler(sess, tstconn, 0x0007, 0x0003, faimtest_infochange, 0);
-      aim_conn_addhandler(sess, tstconn, 0x0007, 0x0005, faimtest_infochange, 0);
-      /* Send the cookie to the Auth */
-      aim_auth_sendcookie(sess, tstconn, cookie);
-      dprintf("sent cookie to authorizer host\n");
-    }
-    break;
-  }  
-  case 0x000d: { /* ChatNav */
-    struct aim_conn_t *tstconn = NULL;
-    tstconn = aim_newconn(sess, AIM_CONN_TYPE_CHATNAV, ip);
-    if ( (tstconn==NULL) || (tstconn->status & AIM_CONN_STATUS_RESOLVERR)) {
-      dprintf("faimtest: unable to connect to chatnav server\n");
-      if (tstconn) aim_conn_kill(sess, &tstconn);
-      return 1;
-    }
-
-    aim_conn_addhandler(sess, tstconn, 0x0001, 0x0003, faimtest_serverready, 0);
-    aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNCOMPLETE, faimtest_conncomplete, 0);
-    aim_auth_sendcookie(sess, tstconn, cookie);
-    dprintf("\achatnav: connected\n");
-    break;
-  }
-  case 0x000e: { /* Chat */
-    char *roomname = NULL;
-    int exchange;
-    struct aim_conn_t *tstconn = NULL;
-
-    roomname = va_arg(ap, char *);
-    exchange = va_arg(ap, int);
-
-    tstconn = aim_newconn(sess, AIM_CONN_TYPE_CHAT, ip);
-    if ( (tstconn==NULL) || (tstconn->status & AIM_CONN_STATUS_RESOLVERR)) {
-      dprintf("faimtest: unable to connect to chat server\n");
-      if (tstconn) aim_conn_kill(sess, &tstconn);
-      return 1;
-    }          
-    dvprintf("faimtest: chat: connected to %s on exchange %d\n", roomname, exchange);
-
-    /*
-     * We must do this to attach the stored name to the connection!
-     */
-    aim_chat_attachname(tstconn, roomname);
-
-    aim_conn_addhandler(sess, tstconn, 0x0001, 0x0003, faimtest_serverready, 0);
-    aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNCOMPLETE, faimtest_conncomplete, 0);
-    aim_auth_sendcookie(sess, tstconn, cookie);
-
-    break;
-  }
-  default:
-    dvprintf("uh oh... got redirect for unknown service 0x%04x!!\n", serviceid);
-    /* dunno */
-  }
-
-  va_end(ap);
-
-  return 1;
+       static char *codes[] = {
+               "Unknown",
+               "Mandatory upgrade",
+               "Advisory upgrade",
+               "System bulletin",
+               "Top o' the world!"
+       };
+       static int codeslen = 5;
+       char *msg;
+       fu16_t id;
+       va_list ap;
+
+       va_start(ap, fr);
+       id = va_arg(ap, int);
+       msg = va_arg(ap, char *);
+       va_end(ap);
+
+       dvprintf("motd: %s (%d / %s)\n", msg, id, (id < codeslen)?codes[id]:"unknown");
+
+       return 1;
 }
 
 /*
@@ -886,133 +727,134 @@ int faimtest_handleredirect(struct aim_session_t *sess, struct command_rx_struct
  * module name on an invalid request.
  *
  */
-static int getaimdata(unsigned char **bufret, int *buflenret, unsigned long offset, unsigned long len, const char *modname)
+static int getaimdata(aim_session_t *sess, unsigned char **bufret, int *buflenret, unsigned long offset, unsigned long len, const char *modname)
 {
-  FILE *f;
-  static const char defaultmod[] = "aim.exe";
-  char *filename = NULL;
-  struct stat st;
-  unsigned char *buf;
-  int invalid = 0;
+       struct faimtest_priv *priv = (struct faimtest_priv *)sess->aux_data;
+       FILE *f;
+       static const char defaultmod[] = "aim.exe";
+       char *filename = NULL;
+       struct stat st;
+       unsigned char *buf;
+       int invalid = 0;
+
+       if (!bufret || !buflenret)
+               return -1;
 
-  if (!bufret || !buflenret)
-    return -1;
+       if (modname) {
 
-  if (modname) {
-
-    if (!(filename = malloc(strlen(aimbinarypath)+1+strlen(modname)+4+1))) {
-      dperror("memrequest: malloc");
-      return -1;
-    }
-
-    sprintf(filename, "%s/%s.ocm", aimbinarypath, modname);
+               if (!(filename = malloc(strlen(priv->aimbinarypath)+1+strlen(modname)+4+1))) {
+                       dperror("memrequest: malloc");
+                       return -1;
+               }
 
-  } else {
-
-    if (!(filename = malloc(strlen(aimbinarypath)+1+strlen(defaultmod)+1))) {
-      dperror("memrequest: malloc");
-      return -1;
-    }
+               sprintf(filename, "%s/%s.ocm", priv->aimbinarypath, modname);
 
-    sprintf(filename, "%s/%s", aimbinarypath, defaultmod);
+       } else {
 
-  }
+               if (!(filename = malloc(strlen(priv->aimbinarypath)+1+strlen(defaultmod)+1))) {
+                       dperror("memrequest: malloc");
+                       return -1;
+               }
 
-  if (stat(filename, &st) == -1) {
-    if (!modname) {
-      dperror("memrequest: stat");
-      free(filename);
-      return -1;
-    }
-    invalid = 1;
-  }
+               sprintf(filename, "%s/%s", priv->aimbinarypath, defaultmod);
 
-  if (!invalid) {
-    if ((offset > st.st_size) || (len > st.st_size))
-      invalid = 1;
-    else if ((st.st_size - offset) < len)
-      len = st.st_size - offset;
-    else if ((st.st_size - len) < len)
-      len = st.st_size - len;
-  }
+       }
 
-  if (!invalid && len)
-    len %= 4096;
+       if (stat(filename, &st) == -1) {
+               if (!modname) {
+                       dperror("memrequest: stat");
+                       free(filename);
+                       return -1;
+               }
+               invalid = 1;
+       }
 
-  if (invalid) {
-    int i;
+       if (!invalid) {
+               if ((offset > st.st_size) || (len > st.st_size))
+                       invalid = 1;
+               else if ((st.st_size - offset) < len)
+                       len = st.st_size - offset;
+               else if ((st.st_size - len) < len)
+                       len = st.st_size - len;
+       }
 
-    free(filename); /* not needed */
+       if (!invalid && len)
+               len %= 4096;
 
-    dvprintf("memrequest: recieved invalid request for 0x%08lx bytes at 0x%08lx (file %s)\n", len, offset, modname);
+       if (invalid) {
+               int i;
 
-    i = 8;
-    if (modname)
-      i += strlen(modname);
+               free(filename); /* not needed */
 
-    if (!(buf = malloc(i)))
-      return -1;
+               dvprintf("memrequest: recieved invalid request for 0x%08lx bytes at 0x%08lx (file %s)\n", len, offset, modname);
 
-    i = 0;
+               i = 8;
+               if (modname)
+                       i += strlen(modname);
 
-    if (modname) {
-      memcpy(buf, modname, strlen(modname));
-      i += strlen(modname);
-    }
+               if (!(buf = malloc(i)))
+                       return -1;
 
-    /* Damn endianness. This must be little (LSB first) endian. */
-    buf[i++] = offset & 0xff;
-    buf[i++] = (offset >> 8) & 0xff;
-    buf[i++] = (offset >> 16) & 0xff;
-    buf[i++] = (offset >> 24) & 0xff;
-    buf[i++] = len & 0xff;
-    buf[i++] = (len >> 8) & 0xff;
-    buf[i++] = (len >> 16) & 0xff;
-    buf[i++] = (len >> 24) & 0xff;
+               i = 0;
 
-    *bufret = buf;
-    *buflenret = i;
+               if (modname) {
+                       memcpy(buf, modname, strlen(modname));
+                       i += strlen(modname);
+               }
 
-  } else {
+               /* Damn endianness. This must be little (LSB first) endian. */
+               buf[i++] = offset & 0xff;
+               buf[i++] = (offset >> 8) & 0xff;
+               buf[i++] = (offset >> 16) & 0xff;
+               buf[i++] = (offset >> 24) & 0xff;
+               buf[i++] = len & 0xff;
+               buf[i++] = (len >> 8) & 0xff;
+               buf[i++] = (len >> 16) & 0xff;
+               buf[i++] = (len >> 24) & 0xff;
 
-    if (!(buf = malloc(len))) {
-      free(filename);
-      return -1;
-    }
+               *bufret = buf;
+               *buflenret = i;
 
-    dvprintf("memrequest: loading %ld bytes from 0x%08lx in \"%s\"...\n", len, offset, filename);
+       } else {
 
-    if (!(f = fopen(filename, "r"))) {
-      dperror("memrequest: fopen");
-      free(filename);
-      free(buf);
-      return -1;
-    }
+               if (!(buf = malloc(len))) {
+                       free(filename);
+                       return -1;
+               }
 
-    free(filename);
+               dvprintf("memrequest: loading %ld bytes from 0x%08lx in \"%s\"...\n", len, offset, filename);
 
-    if (fseek(f, offset, SEEK_SET) == -1) {
-      dperror("memrequest: fseek");
-      fclose(f);
-      free(buf);
-      return -1;
-    }
+               if (!(f = fopen(filename, "r"))) {
+                       dperror("memrequest: fopen");
+                       free(filename);
+                       free(buf);
+                       return -1;
+               }
 
-    if (fread(buf, len, 1, f) != 1) {
-      dperror("memrequest: fread");
-      fclose(f);
-      free(buf);
-      return -1;
-    }
+               free(filename);
 
-    fclose(f);
+               if (fseek(f, offset, SEEK_SET) == -1) {
+                       dperror("memrequest: fseek");
+                       fclose(f);
+                       free(buf);
+                       return -1;
+               }
 
-    *bufret = buf;
-    *buflenret = len;
-
-  }
+               if (fread(buf, len, 1, f) != 1) {
+                       dperror("memrequest: fread");
+                       fclose(f);
+                       free(buf);
+                       return -1;
+               }
 
-  return 0; /* success! */
+               fclose(f);
+
+               *bufret = buf;
+               *buflenret = len;
+
+       }
+
+       return 0; /* success! */
 }
 
 /*
@@ -1022,1129 +864,605 @@ static int getaimdata(unsigned char **bufret, int *buflenret, unsigned long offs
  * buffer back to libfaim so it can hash the data and send it to AOL for
  * inspection by the client police.
  */
-static int faimtest_memrequest(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+static int faimtest_memrequest(aim_session_t *sess, aim_frame_t *fr, ...)
 {
-  va_list ap;
-  unsigned long offset, len;
-  char *modname;
-  unsigned char *buf;
-  int buflen;
-  
-  va_start(ap, command);
-  offset = va_arg(ap, unsigned long);
-  len = va_arg(ap, unsigned long);
-  modname = va_arg(ap, char *);
-  va_end(ap);
+       struct faimtest_priv *priv = (struct faimtest_priv *)sess->aux_data;
+       va_list ap;
+       fu32_t offset, len;
+       char *modname;
+       unsigned char *buf;
+       int buflen;
+
+       va_start(ap, fr);
+       offset = va_arg(ap, fu32_t);
+       len = va_arg(ap, fu32_t);
+       modname = va_arg(ap, char *);
+       va_end(ap);
 
-  if (aimbinarypath && (getaimdata(&buf, &buflen, offset, len, modname) == 0)) {
+       if (priv->aimbinarypath && (getaimdata(sess, &buf, &buflen, offset, len, modname) == 0)) {
 
-    aim_sendmemblock(sess, command->conn, offset, buflen, buf, AIM_SENDMEMBLOCK_FLAG_ISREQUEST);
+               aim_sendmemblock(sess, fr->conn, offset, buflen, buf, AIM_SENDMEMBLOCK_FLAG_ISREQUEST);
 
-    free(buf);
+               free(buf);
 
-  } else {
+       } else {
 
-    dvprintf("memrequest: unable to use AIM binary (\"%s/%s\"), sending defaults...\n", aimbinarypath, modname);
+               dvprintf("memrequest: unable to use AIM binary (\"%s/%s\"), sending defaults...\n", priv->aimbinarypath, modname);
 
-    aim_sendmemblock(sess, command->conn, offset, len, NULL, AIM_SENDMEMBLOCK_FLAG_ISREQUEST);
+               aim_sendmemblock(sess, fr->conn, offset, len, NULL, AIM_SENDMEMBLOCK_FLAG_ISREQUEST);
 
-  }
+       }
 
-  return 1;
+       return 1;
 }
 
-static int faimtest_parse_authresp(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+static void printuserflags(fu16_t flags)
 {
-  va_list ap;
-  struct aim_conn_t *bosconn = NULL;
-  char *sn = NULL, *bosip = NULL, *errurl = NULL, *email = NULL;
-  unsigned char *cookie = NULL;
-  int errorcode = 0, regstatus = 0;
-  int latestbuild = 0, latestbetabuild = 0;
-  char *latestrelease = NULL, *latestbeta = NULL;
-  char *latestreleaseurl = NULL, *latestbetaurl = NULL;
-  char *latestreleaseinfo = NULL, *latestbetainfo = NULL;
-
-  va_start(ap, command);
-  sn = va_arg(ap, char *);
-  errorcode = va_arg(ap, int);
-  errurl = va_arg(ap, char *);
-  regstatus = va_arg(ap, int);
-  email = va_arg(ap, char *);
-  bosip = va_arg(ap, char *);
-  cookie = va_arg(ap, unsigned char *);
-
-  latestrelease = va_arg(ap, char *);
-  latestbuild = va_arg(ap, int);
-  latestreleaseurl = va_arg(ap, char *);
-  latestreleaseinfo = va_arg(ap, char *);
-
-  latestbeta = va_arg(ap, char *);
-  latestbetabuild = va_arg(ap, int);
-  latestbetaurl = va_arg(ap, char *);
-  latestbetainfo = va_arg(ap, char *);
-
-  va_end(ap);
-
-  dvprintf("Screen name: %s\n", sn);
-
-  /*
-   * Check for error.
-   */
-  if (errorcode || !bosip || !cookie) {
-    dvprintf("Login Error Code 0x%04x\n", errorcode);
-    dvprintf("Error URL: %s\n", errurl);
-    aim_conn_kill(sess, &command->conn);
-    return 1;
-  }
-
-  dvprintf("Reg status: %2d\n", regstatus);
-  dvprintf("Email: %s\n", email);
-  dvprintf("BOS IP: %s\n", bosip);
-
-  if (latestbeta)
-    dvprintf("Latest beta version: %s, build %d, at %s (more info at %s)\n", latestbeta, latestbetabuild, latestbetaurl, latestbetainfo);
-
-  if (latestrelease)
-    dvprintf("Latest released version: %s, build %d, at %s (more info at %s)\n", latestrelease, latestbuild, latestreleaseurl, latestreleaseinfo);
-
-  dprintf("Closing auth connection...\n");
-  aim_conn_kill(sess, &command->conn);
-  if (!(bosconn = aim_newconn(sess, AIM_CONN_TYPE_BOS, bosip))) {
-    dprintf("faimtest: could not connect to BOS: internal error\n");
-    return 1;
-  } else if (bosconn->status & AIM_CONN_STATUS_CONNERR) {      
-    dprintf("faimtest: could not connect to BOS\n");
-    aim_conn_kill(sess, &bosconn);
-    return 1;
-  }
-
-  aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNCOMPLETE, faimtest_conncomplete, 0);
-  aim_conn_addhandler(sess, bosconn, 0x0009, 0x0003, faimtest_bosrights, 0);
-  aim_conn_addhandler(sess, bosconn, 0x0001, 0x0007, faimtest_rateresp, 0); /* rate info */
-  aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_ACK, AIM_CB_ACK_ACK, NULL, 0);
-  aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, 0x0018, faimtest_hostversions, 0);
-  aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_SERVERREADY, faimtest_serverready, 0);
-  aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_RATEINFO, NULL, 0);
-  aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_REDIRECT, faimtest_handleredirect, 0);
-  aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_STS, AIM_CB_STS_SETREPORTINTERVAL, faimtest_reportinterval, 0);
-  aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_BUD, AIM_CB_BUD_RIGHTSINFO, faimtest_parse_buddyrights, 0);
-  aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_BUD, AIM_CB_BUD_ONCOMING, faimtest_parse_oncoming, 0);
-  aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_BUD, AIM_CB_BUD_OFFGOING, faimtest_parse_offgoing, 0);
-  aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_INCOMING, faimtest_parse_incoming_im, 0);
-  aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOC, AIM_CB_LOC_ERROR, faimtest_parse_locerr, 0);
-  aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_MISSEDCALL, faimtest_parse_misses, 0);
-  aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_RATECHANGE, faimtest_parse_ratechange, 0);
-  aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_EVIL, faimtest_parse_evilnotify, 0);
-  aim_conn_addhandler(sess, bosconn, 0x000a, 0x0001, faimtest_parse_searcherror, 0);
-  aim_conn_addhandler(sess, bosconn, 0x000a, 0x0003, faimtest_parse_searchreply, 0);
-  aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_ERROR, faimtest_parse_msgerr, 0);
-  aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOC, AIM_CB_LOC_USERINFO, faimtest_parse_userinfo, 0);
-  aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOC, AIM_CB_LOC_RIGHTSINFO, faimtest_locrights, 0);
-  aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_ACK, faimtest_parse_msgack, 0);
-
-  aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_MOTD, faimtest_parse_motd, 0);
-
-  aim_conn_addhandler(sess, bosconn, 0x0004, 0x0005, faimtest_icbmparaminfo, 0);
-  aim_conn_addhandler(sess, bosconn, 0x0001, 0x0001, faimtest_parse_genericerr, 0);
-  aim_conn_addhandler(sess, bosconn, 0x0003, 0x0001, faimtest_parse_genericerr, 0);
-  aim_conn_addhandler(sess, bosconn, 0x0009, 0x0001, faimtest_parse_genericerr, 0);
-
-  aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, faimtest_parse_connerr, 0);
-  aim_conn_addhandler(sess, bosconn, 0x0001, 0x001f, faimtest_memrequest, 0);
-  aim_conn_addhandler(sess, bosconn, 0xffff, 0xffff, faimtest_parse_unknown, 0);
-
-  aim_auth_sendcookie(sess, bosconn, cookie);
-
-  return 1;
+       if (flags & AIM_FLAG_UNCONFIRMED)
+               dinlineprintf("UNCONFIRMED ");
+       if (flags & AIM_FLAG_ADMINISTRATOR)
+               dinlineprintf("ADMINISTRATOR ");
+       if (flags & AIM_FLAG_AOL)
+               dinlineprintf("AOL ");
+       if (flags & AIM_FLAG_OSCAR_PAY)
+               dinlineprintf("OSCAR_PAY ");
+       if (flags & AIM_FLAG_FREE)
+               dinlineprintf("FREE ");
+       if (flags & AIM_FLAG_AWAY)
+               dinlineprintf("AWAY ");
+       if (flags & AIM_FLAG_UNKNOWN40)
+               dinlineprintf("ICQ? ");
+       if (flags & AIM_FLAG_UNKNOWN80)
+               dinlineprintf("UNKNOWN80 ");
+       return;
 }
 
-static void printuserflags(unsigned short flags)
+static int faimtest_parse_userinfo(aim_session_t *sess, aim_frame_t *fr, ...)
 {
-  if (flags & AIM_FLAG_UNCONFIRMED)
-    dinlineprintf("UNCONFIRMED ");
-  if (flags & AIM_FLAG_ADMINISTRATOR)
-    dinlineprintf("ADMINISTRATOR ");
-  if (flags & AIM_FLAG_AOL)
-    dinlineprintf("AOL ");
-  if (flags & AIM_FLAG_OSCAR_PAY)
-    dinlineprintf("OSCAR_PAY ");
-  if (flags & AIM_FLAG_FREE)
-    dinlineprintf("FREE ");
-  if (flags & AIM_FLAG_AWAY)
-    dinlineprintf("AWAY ");
-  if (flags & AIM_FLAG_UNKNOWN40)
-    dinlineprintf("ICQ? ");
-  if (flags & AIM_FLAG_UNKNOWN80)
-    dinlineprintf("UNKNOWN80 ");
-  return;
-}
+       struct aim_userinfo_s *userinfo;
+       char *prof_encoding = NULL;
+       char *prof = NULL;
+       fu16_t inforeq = 0;
 
-int faimtest_parse_userinfo(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{
-  struct aim_userinfo_s *userinfo;
-  char *prof_encoding = NULL;
-  char *prof = NULL;
-  unsigned short inforeq = 0;
-
-  va_list ap;
-  va_start(ap, command);
-  userinfo = va_arg(ap, struct aim_userinfo_s *);
-  prof_encoding = va_arg(ap, char *);
-  prof = va_arg(ap, char *);
-  inforeq = va_arg(ap, int);
-  va_end(ap);
-  
-  dvprintf("faimtest: userinfo: sn: %s\n", userinfo->sn);
-  dvprintf("faimtest: userinfo: warnlevel: 0x%04x\n", userinfo->warnlevel);
-  dvprintf("faimtest: userinfo: flags: 0x%04x = ", userinfo->flags);
-  printuserflags(userinfo->flags);
-  dinlineprintf("\n");
-  
-  dvprintf("faimtest: userinfo: membersince: %lu\n", userinfo->membersince);
-  dvprintf("faimtest: userinfo: onlinesince: %lu\n", userinfo->onlinesince);
-  dvprintf("faimtest: userinfo: idletime: 0x%04x\n", userinfo->idletime);
-  
-  if (inforeq == AIM_GETINFO_GENERALINFO) {
-    dvprintf("faimtest: userinfo: profile_encoding: %s\n", prof_encoding ? prof_encoding : "[none]");
-    dvprintf("faimtest: userinfo: prof: %s\n", prof ? prof : "[none]");
-  } else if (inforeq == AIM_GETINFO_AWAYMESSAGE) {
-    dvprintf("faimtest: userinfo: awaymsg_encoding: %s\n", prof_encoding ? prof_encoding : "[none]");
-    dvprintf("faimtest: userinfo: awaymsg: %s\n", prof ? prof : "[none]");
-  } else 
-    dprintf("faimtest: userinfo: unknown info request\n");
-  
-  return 1;
+       va_list ap;
+       va_start(ap, fr);
+       userinfo = va_arg(ap, struct aim_userinfo_s *);
+       prof_encoding = va_arg(ap, char *);
+       prof = va_arg(ap, char *);
+       inforeq = va_arg(ap, fu16_t);
+       va_end(ap);
+
+       dvprintf("faimtest: userinfo: sn: %s\n", userinfo->sn);
+       dvprintf("faimtest: userinfo: warnlevel: 0x%04x\n", userinfo->warnlevel);
+       dvprintf("faimtest: userinfo: flags: 0x%04x = ", userinfo->flags);
+       printuserflags(userinfo->flags);
+       dinlineprintf("\n");
+
+       dvprintf("faimtest: userinfo: membersince: %lu\n", userinfo->membersince);
+       dvprintf("faimtest: userinfo: onlinesince: %lu\n", userinfo->onlinesince);
+       dvprintf("faimtest: userinfo: idletime: 0x%04x\n", userinfo->idletime);
+
+       if (inforeq == AIM_GETINFO_GENERALINFO) {
+               dvprintf("faimtest: userinfo: profile_encoding: %s\n", prof_encoding ? prof_encoding : "[none]");
+               dvprintf("faimtest: userinfo: prof: %s\n", prof ? prof : "[none]");
+       } else if (inforeq == AIM_GETINFO_AWAYMESSAGE) {
+               dvprintf("faimtest: userinfo: awaymsg_encoding: %s\n", prof_encoding ? prof_encoding : "[none]");
+               dvprintf("faimtest: userinfo: awaymsg: %s\n", prof ? prof : "[none]");
+       } else 
+               dprintf("faimtest: userinfo: unknown info request\n");
+
+       return 1;
 }
 
-static int faimtest_handlecmd(struct aim_session_t *sess, struct command_rx_struct *command, struct aim_userinfo_s *userinfo, char *tmpstr)
+static int faimtest_handlecmd(aim_session_t *sess, aim_conn_t *conn, struct aim_userinfo_s *userinfo, const char *tmpstr)
 {
+       struct faimtest_priv *priv = (struct faimtest_priv *)sess->aux_data;
 
-  if (!strncmp(tmpstr, "disconnect", 10)) {
-
-    logout();
+       if (!strncmp(tmpstr, "disconnect", 10)) {
 
-  } else if (strstr(tmpstr, "goodday")) {
+               logout(sess);
 
-      aim_send_im(sess, command->conn, userinfo->sn, AIM_IMFLAGS_ACK, "Good day to you too.");
+       } else if (strstr(tmpstr, "goodday")) {
 
-  } else if (strstr(tmpstr, "haveicon") && buddyicon) {
-    struct aim_sendimext_args args;
-    static const char iconmsg[] = {"I have an icon"};
+               aim_send_im(sess, conn, userinfo->sn, AIM_IMFLAGS_ACK, "Good day to you too.");
 
-    args.destsn = userinfo->sn;
-    args.flags = AIM_IMFLAGS_HASICON;
-    args.msg = iconmsg;
-    args.msglen = strlen(iconmsg);
-    args.iconlen = buddyiconlen;
-    args.iconstamp = buddyiconstamp;
-    args.iconsum = buddyiconsum;
+       } else if (strstr(tmpstr, "haveicon") && priv->buddyicon) {
+               struct aim_sendimext_args args;
+               static const char iconmsg[] = {"I have an icon"};
 
-    aim_send_im_ext(sess, command->conn, &args);
+               args.destsn = userinfo->sn;
+               args.flags = AIM_IMFLAGS_HASICON;
+               args.msg = iconmsg;
+               args.msglen = strlen(iconmsg);
+               args.iconlen = priv->buddyiconlen;
+               args.iconstamp = priv->buddyiconstamp;
+               args.iconsum = priv->buddyiconsum;
 
-  } else if (strstr(tmpstr, "sendicon") && buddyicon) {
+               aim_send_im_ext(sess, conn, &args);
 
-    aim_send_icon(sess, command->conn, userinfo->sn, buddyicon, buddyiconlen, buddyiconstamp, buddyiconsum);
+       } else if (strstr(tmpstr, "sendicon") && priv->buddyicon) {
 
-  } else if (strstr(tmpstr, "warnme")) {
+               aim_send_icon(sess, conn, userinfo->sn, priv->buddyicon, priv->buddyiconlen, priv->buddyiconstamp, priv->buddyiconsum);
 
-    dprintf("faimtest: icbm: sending non-anon warning\n");
-    aim_send_warning(sess, command->conn, userinfo->sn, 0);
+       } else if (strstr(tmpstr, "warnme")) {
 
-  } else if (strstr(tmpstr, "anonwarn")) {
+               dprintf("faimtest: icbm: sending non-anon warning\n");
+               aim_send_warning(sess, conn, userinfo->sn, 0);
 
-    dprintf("faimtest: icbm: sending anon warning\n");
-    aim_send_warning(sess, command->conn, userinfo->sn, AIM_WARN_ANON);
+       } else if (strstr(tmpstr, "anonwarn")) {
 
-  } else if (strstr(tmpstr, "setdirectoryinfo")) {
+               dprintf("faimtest: icbm: sending anon warning\n");
+               aim_send_warning(sess, conn, userinfo->sn, AIM_WARN_ANON);
 
-    dprintf("faimtest: icbm: sending backwards profile data\n");
-    aim_setdirectoryinfo(sess, command->conn, "tsrif", "elddim", "tsal", "nediam", "emankcin", "teerts", "ytic", "etats", "piz", 0, 1);
+       } else if (strstr(tmpstr, "setdirectoryinfo")) {
 
-  } else if (strstr(tmpstr, "setinterests")) {
+               dprintf("faimtest: icbm: sending backwards profile data\n");
+               aim_setdirectoryinfo(sess, conn, "tsrif", "elddim", "tsal", "nediam", "emankcin", "teerts", "ytic", "etats", "piz", 0, 1);
 
-    dprintf("faimtest: icbm: setting fun interests\n");
-    aim_setuserinterests(sess, command->conn, "interest1", "interest2", "interest3", "interest4", "interest5", 1);
+       } else if (strstr(tmpstr, "setinterests")) {
 
-  } else if (!strncmp(tmpstr, "getfile", 7)) {
+               dprintf("faimtest: icbm: setting fun interests\n");
+               aim_setuserinterests(sess, conn, "interest1", "interest2", "interest3", "interest4", "interest5", 1);
 
-    if (!ohcaptainmycaptain) {
+       } else if (!strncmp(tmpstr, "getfile", 7)) {
 
-      aim_send_im(sess, command->conn, userinfo->sn, AIM_IMFLAGS_ACK, "I have no owner!");
+               if (!priv->ohcaptainmycaptain) {
 
-    } else {
-      struct aim_conn_t *newconn;
+                       aim_send_im(sess, conn, userinfo->sn, AIM_IMFLAGS_ACK, "I have no owner!");
 
-      newconn = aim_getfile_initiate(sess, command->conn, (strlen(tmpstr) < 8)?ohcaptainmycaptain:tmpstr+8);
-      dvprintf("faimtest: getting file listing from %s\n", (strlen(tmpstr) < 8)?ohcaptainmycaptain:tmpstr+8);
-      aim_conn_addhandler(sess, newconn,  AIM_CB_FAM_OFT, AIM_CB_OFT_GETFILEINITIATE, faimtest_getfile_initiate,0);
-    }
+               } else 
+                       getfile_start(sess, conn, (strlen(tmpstr) < 8)?priv->ohcaptainmycaptain:tmpstr+8);
+               
+       } else if (!strncmp(tmpstr, "open chatnav", 12)) {
 
-  } else if (!strncmp(tmpstr, "open chatnav", 12)) {
+               aim_bos_reqservice(sess, conn, AIM_CONN_TYPE_CHATNAV);
 
-    aim_bos_reqservice(sess, command->conn, AIM_CONN_TYPE_CHATNAV);
+       } else if (!strncmp(tmpstr, "create", 6)) {
 
-  } else if (!strncmp(tmpstr, "create", 6)) {
+               aim_chatnav_createroom(sess,aim_getconn_type(sess, AIM_CONN_TYPE_CHATNAV), (strlen(tmpstr) < 7)?"WorldDomination":tmpstr+7, 0x0004);
 
-    aim_chatnav_createroom(sess,aim_getconn_type(sess, AIM_CONN_TYPE_CHATNAV), (strlen(tmpstr) < 7)?"WorldDomination":tmpstr+7, 0x0004);
+       } else if (!strncmp(tmpstr, "close chatnav", 13)) {
+               aim_conn_t *chatnavconn;
 
-  } else if (!strncmp(tmpstr, "close chatnav", 13)) {
-    struct aim_conn_t *chatnavconn;
+               if ((chatnavconn = aim_getconn_type(sess, AIM_CONN_TYPE_CHATNAV)))
+                       aim_conn_kill(sess, &chatnavconn);
 
-    chatnavconn = aim_getconn_type(sess, AIM_CONN_TYPE_CHATNAV);
-    aim_conn_kill(sess, &chatnavconn);
+       } else if (!strncmp(tmpstr, "join", 4)) {
 
-  } else if (!strncmp(tmpstr, "join", 4)) {
+               aim_chat_join(sess, conn, 0x0004, "worlddomination", 0x0000);
 
-    aim_chat_join(sess, command->conn, 0x0004, "worlddomination");
+       } else if (!strncmp(tmpstr, "leave", 5)) {
 
-  } else if (!strncmp(tmpstr, "leave", 5)) {
+               aim_chat_leaveroom(sess, "worlddomination");
 
-    aim_chat_leaveroom(sess, "worlddomination");
+       } else if (!strncmp(tmpstr, "getinfo", 7)) {
 
-  } else if (!strncmp(tmpstr, "getinfo", 7)) {
+               aim_getinfo(sess, conn, "75784102", AIM_GETINFO_GENERALINFO);
+               aim_getinfo(sess, conn, "15853637", AIM_GETINFO_AWAYMESSAGE);
+               aim_getinfo(sess, conn, "midendian", AIM_GETINFO_GENERALINFO);
+               aim_getinfo(sess, conn, "midendian", AIM_GETINFO_AWAYMESSAGE);
 
-    aim_getinfo(sess, command->conn, "75784102", AIM_GETINFO_GENERALINFO);
-    aim_getinfo(sess, command->conn, "15853637", AIM_GETINFO_AWAYMESSAGE);
-    aim_getinfo(sess, command->conn, "midendian", AIM_GETINFO_GENERALINFO);
-    aim_getinfo(sess, command->conn, "midendian", AIM_GETINFO_AWAYMESSAGE);
+       } else if (!strncmp(tmpstr, "open directim", 13)) {
 
-  } else if (!strncmp(tmpstr, "open directim", 13)) {
-    struct aim_conn_t *newconn;
+               directim_start(sess, conn, (strlen(tmpstr) < 14)?userinfo->sn:tmpstr+14);
 
-    printf("faimtest: opening directim to %s\n", (strlen(tmpstr) < 14)?userinfo->sn:tmpstr+14);
-    newconn = aim_directim_initiate(sess, command->conn, NULL, (strlen(tmpstr) < 14)?userinfo->sn:tmpstr+14);
-    if(!newconn || newconn->fd == -1)
-      printf("connection failed!\n");
-    aim_conn_addhandler(sess, newconn,  AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMINITIATE, faimtest_directim_initiate,0);
+       } else if(!(strncmp(tmpstr, "lookup", 6))) {
 
-  } else if(!(strncmp(tmpstr, "lookup", 6))) {
+               aim_usersearch_address(sess, conn, tmpstr+7);
 
-    aim_usersearch_address(sess, command->conn, tmpstr+7);
+       } else if (!strncmp(tmpstr, "reqsendmsg", 10)) {
 
-  } else if (!strncmp(tmpstr, "reqsendmsg", 10)) {
+               aim_send_im(sess, conn, priv->ohcaptainmycaptain, 0, "sendmsg 7900");
 
-    aim_send_im(sess, command->conn, ohcaptainmycaptain, 0, "sendmsg 7900");
+       } else if (!strncmp(tmpstr, "reqauth", 7)) {
 
-  } else if (!strncmp(tmpstr, "reqauth", 7)) {
+               aim_bos_reqservice(sess, conn, AIM_CONN_TYPE_AUTH);
 
-    aim_bos_reqservice(sess, command->conn, AIM_CONN_TYPE_AUTH);
+       } else if (!strncmp(tmpstr, "reqconfirm", 10)) {
 
-  } else if (!strncmp(tmpstr, "reqconfirm", 10)) {
+               aim_auth_reqconfirm(sess, aim_getconn_type(sess, AIM_CONN_TYPE_AUTH));
 
-    aim_auth_reqconfirm(sess, aim_getconn_type(sess, AIM_CONN_TYPE_AUTH));
+       } else if (!strncmp(tmpstr, "reqemail", 8)) {
 
-  } else if (!strncmp(tmpstr, "reqemail", 8)) {
+               aim_auth_getinfo(sess, aim_getconn_type(sess, AIM_CONN_TYPE_AUTH), 0x0011);
 
-    aim_auth_getinfo(sess, aim_getconn_type(sess, AIM_CONN_TYPE_AUTH), 0x0011);
+       } else if (!strncmp(tmpstr, "changepass", 8)) {
 
-  } else if (!strncmp(tmpstr, "changepass", 8)) {
+               aim_auth_changepasswd(sess, aim_getconn_type(sess, AIM_CONN_TYPE_AUTH), "NEWPASSWORD", "OLDPASSWORD");
 
-    aim_auth_changepasswd(sess, aim_getconn_type(sess, AIM_CONN_TYPE_AUTH), "NEWPASSWORD", "OLDPASSWORD");
+       } else if (!strncmp(tmpstr, "setemail", 8)) {
 
-  } else if (!strncmp(tmpstr, "setemail", 8)) {
+               aim_auth_setemail(sess, aim_getconn_type(sess, AIM_CONN_TYPE_AUTH), "NEWEMAILADDRESS");
 
-    aim_auth_setemail(sess, aim_getconn_type(sess, AIM_CONN_TYPE_AUTH), "NEWEMAILADDRESS");
+       } else if (!strncmp(tmpstr, "sendmsg", 7)) {
+               int i;
 
-  } else if (!strncmp(tmpstr, "sendmsg", 7)) {
-    int i;
-    i = atoi(tmpstr+8);
-    if (i < 10000) {
-      char *newbuf;
-      int z;
+               i = atoi(tmpstr+8);
+               if (i < 10000) {
+                       char *newbuf;
+                       int z;
 
-      newbuf = malloc(i+1);
-      for (z = 0; z < i; z++) {
-       newbuf[z] = (z % 10)+0x30;
-      }
-      newbuf[i] = '\0';
-      aim_send_im(sess, command->conn, userinfo->sn, 0, newbuf);
-      free(newbuf);
-    }
+                       newbuf = malloc(i+1);
+                       for (z = 0; z < i; z++)
+                               newbuf[z] = (z % 10)+0x30;
+                       newbuf[i] = '\0';
+                       aim_send_im(sess, conn, userinfo->sn, 0, newbuf);
+                       free(newbuf);
+               }
 
-  } else {
+       } else {
 
-    dprintf("unknown command.\n");
-    aim_add_buddy(sess, command->conn, userinfo->sn);
+               dprintf("unknown command.\n");
+               aim_add_buddy(sess, conn, userinfo->sn);
 
-  }  
+       }  
 
-  return 0;
+       return 0;
 }
 
 /*
- * The user-level Incoming ICBM callback.
- *
+ * Channel 1: Standard Message
  */
-int faimtest_parse_incoming_im(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+static int faimtest_parse_incoming_im_chan1(aim_session_t *sess, aim_conn_t *conn, struct aim_userinfo_s *userinfo, va_list ap)
 {
-  int channel;
-  struct aim_userinfo_s *userinfo;
-  va_list ap;
-
-  va_start(ap, command);
-  channel = va_arg(ap, int);
-  userinfo = va_arg(ap, struct aim_userinfo_s *);
-
-  /*
-   * Channel 1: Standard Message
-   */
-  if (channel == 1) {
-    char *tmpstr;
-    struct aim_incomingim_ch1_args *args;
-    int clienttype = AIM_CLIENTTYPE_UNKNOWN;
-    char realmsg[8192+1] = {""};
-
-    args = va_arg(ap, struct aim_incomingim_ch1_args *);
-    va_end(ap);
-    
-    clienttype = aim_fingerprintclient(args->fingerprint, args->finlen);
-
-    dvprintf("faimtest: icbm: sn = \"%s\"\n", userinfo->sn);
-    dvprintf("faimtest: icbm: probable client type: %d\n", clienttype);
-    dvprintf("faimtest: icbm: warnlevel = 0x%04x\n", userinfo->warnlevel);
-    dvprintf("faimtest: icbm: flags = 0x%04x = ", userinfo->flags);
-    printuserflags(userinfo->flags);
-    dinlineprintf("\n");
-
-    dvprintf("faimtest: icbm: membersince = %lu\n", userinfo->membersince);
-    dvprintf("faimtest: icbm: onlinesince = %lu\n", userinfo->onlinesince);
-    dvprintf("faimtest: icbm: idletime = 0x%04x\n", userinfo->idletime);
-    dvprintf("faimtest: icbm: capabilities = 0x%04x\n", userinfo->capabilities);
-    
-    dprintf("faimtest: icbm: icbmflags = ");
-    if (args->icbmflags & AIM_IMFLAGS_AWAY)
-      dinlineprintf("away ");
-    if (args->icbmflags & AIM_IMFLAGS_ACK)
-      dinlineprintf("ackrequest ");
-    if (args->icbmflags & AIM_IMFLAGS_BUDDYREQ)
-      dinlineprintf("buddyreq ");
-    if (args->icbmflags & AIM_IMFLAGS_HASICON)
-      dinlineprintf("hasicon ");
-    dinlineprintf("\n");
-    
-    dvprintf("faimtest: icbm: encoding flags = {%04x, %04x}\n", args->flag1, args->flag2);
-
-    /*
-     * Quickly convert it to eight bit format, replacing non-ASCII UNICODE 
-     * characters with their equivelent HTML entity.
-     */
-    if (args->icbmflags & AIM_IMFLAGS_UNICODE) {
-      int i;
-
-      for (i = 0; i < args->msglen; i += 2) {
-       unsigned short uni;
-
-       uni = ((args->msg[i] & 0xff) << 8) | (args->msg[i+1] & 0xff);
-
-       if ((uni < 128) || ((uni >= 160) && (uni <= 255))) { /* ISO 8859-1 */
-
-         snprintf(realmsg+strlen(realmsg), sizeof(realmsg)-strlen(realmsg),
-                  "%c", uni);
-
-       } else { /* something else, do UNICODE entity */
-
-         snprintf(realmsg+strlen(realmsg), sizeof(realmsg)-strlen(realmsg),
-                  "&#%04x;", uni);
+       char *tmpstr;
+       struct aim_incomingim_ch1_args *args;
+       int clienttype = AIM_CLIENTTYPE_UNKNOWN;
+       char realmsg[8192+1] = {""};
 
-       }
+       args = va_arg(ap, struct aim_incomingim_ch1_args *);
+       va_end(ap);
 
-      }
-
-    } else {
-
-      /*
-       * For non-UNICODE encodings (ASCII and ISO 8859-1), there is no
-       * need to do anything special here.  Most terminals/whatever will
-       * be able to display such characters unmodified.
-       *
-       * Beware that PC-ASCII 128 through 159 are _not_ actually defined in 
-       * ASCII or ISO 8859-1, and you should send them as UNICODE.  WinAIM
-       * will send these characters in a UNICODE message, so you need
-       * to do so as well.
-       *
-       * You may not think it necessary to handle UNICODE messages.  You're
-       * probably wrong.  For one thing, Microsoft "Smart Quotes" will
-       * be sent by WinAIM as UNICODE (not HTML UNICODE, but real UNICODE).
-       * If you don't parse UNICODE at all, your users will get a blank
-       * message instead of the message containing Smart Quotes.
-       *
-       */
-      strncpy(realmsg, args->msg, sizeof(realmsg));
-    }
-
-    dvprintf("faimtest: icbm: message: %s\n", realmsg);
-
-    if (args->icbmflags & AIM_IMFLAGS_HASICON)
-      aim_send_im(sess, command->conn, userinfo->sn, AIM_IMFLAGS_BUDDYREQ, "You have an icon");
-
-    if (realmsg) {
-      int i = 0;
-
-      while (realmsg[i] == '<') {
-       if (realmsg[i] == '<') {
-         while (realmsg[i] != '>')
-           i++;
-         i++;
-       }
-      }
-      tmpstr = realmsg+i;
-
-      faimtest_handlecmd(sess, command, userinfo, tmpstr);
-
-    }
-  }
-  /*
-   * Channel 2: Rendevous Request
-   */
-  else if (channel == 2) {
-    struct aim_incomingim_ch2_args *args;
-    
-    args = va_arg(ap, struct aim_incomingim_ch2_args *);
-    va_end(ap);
-
-    switch (args->reqclass) {
-    case AIM_CAPS_VOICE: {
-      
-      dvprintf("faimtest: voice invitation: source sn = %s\n", userinfo->sn);
-      dvprintf("faimtest: voice invitation: \twarnlevel = 0x%04x\n", userinfo->warnlevel);
-      dvprintf("faimtest: voice invitation: \tclass = 0x%04x = ", userinfo->flags);
-      printuserflags(userinfo->flags);
-      dinlineprintf("\n");
-
-      /* we dont get membersince on chat invites! */
-      dvprintf("faimtest: voice invitation: \tonlinesince = %lu\n", userinfo->onlinesince);
-      dvprintf("faimtest: voice invitation: \tidletime = 0x%04x\n", userinfo->idletime);
-      
-      break;
-    }
-    case AIM_CAPS_GETFILE: {
-      struct aim_conn_t *newconn;
-      struct aim_fileheader_t *fh;
-
-      dvprintf("faimtest: get file request from %s (at %s) %x\n", userinfo->sn, args->info.getfile.ip, args->reqclass);
-
-      fh = aim_getlisting(sess, listingfile);
-
-      newconn = aim_accepttransfer(sess, command->conn, userinfo->sn, args->info.getfile.cookie, args->info.getfile.ip, fh->totfiles, fh->totsize, fh->size, fh->checksum, args->reqclass);
-
-      if ( (!newconn) || (newconn->fd == -1) ) {
-       dprintf("faimtest: getfile: requestconn: apparent error in accepttransfer\n");
-       if(newconn)
-         aim_conn_kill(sess, &newconn);
-       break;
-      }
-
-      free(fh);
-
-      aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_GETFILELISTINGREQ, faimtest_getfile_listingreq, 0);
-      aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_GETFILEFILEREQ,  faimtest_getfile_filereq, 0);
-      aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_GETFILEFILESEND, faimtest_getfile_filesend, 0);
-      aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_GETFILECOMPLETE, faimtest_getfile_complete, 0);      
-
-      aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_GETFILEDISCONNECT, faimtest_getfile_disconnect, 0);      
-
-      dprintf("faimtest: getfile connect succeeded, handlers added.\n");
-
-      break;
-    }
-    case AIM_CAPS_SENDFILE: {
-      dprintf("faimtest: send file!\n");
-      break;
-    }
-    case AIM_CAPS_CHAT: {
-      
-      dvprintf("faimtest: chat invitation: source sn = %s\n", userinfo->sn);
-      dvprintf("faimtest: chat invitation: \twarnlevel = 0x%04x\n", userinfo->warnlevel);
-      dvprintf("faimtest: chat invitation: \tclass = 0x%04x = ", userinfo->flags);
-      printuserflags(userinfo->flags);
-      dinlineprintf("\n");
-
-      /* we dont get membersince on chat invites! */
-      dvprintf("faimtest: chat invitation: \tonlinesince = %lu\n", userinfo->onlinesince);
-      dvprintf("faimtest: chat invitation: \tidletime = 0x%04x\n", userinfo->idletime);
-      
-      dvprintf("faimtest: chat invitation: message = %s\n", args->info.chat.msg);
-      dvprintf("faimtest: chat invitation: room name = %s\n", args->info.chat.roominfo.name);
-      dvprintf("faimtest: chat invitation: encoding = %s\n", args->info.chat.encoding);
-      dvprintf("faimtest: chat invitation: language = %s\n", args->info.chat.lang);
-      dvprintf("faimtest: chat invitation: exchange = 0x%04x\n", args->info.chat.roominfo.exchange);
-      dvprintf("faimtest: chat invitation: instance = 0x%04x\n", args->info.chat.roominfo.instance);
-      dvprintf("faimtest: chat invitiation: autojoining %s...\n", args->info.chat.roominfo.name);
-
-      /*
-       * Automatically join room...
-       */ 
-      aim_chat_join(sess, command->conn, args->info.chat.roominfo.exchange, args->info.chat.roominfo.name);
-      break;
-    }  
-    case AIM_CAPS_IMIMAGE: {
-      struct aim_conn_t *newconn;
-
-      dprintf("faimtest: icbm: rendezvous imimage\n");
-
-      dvprintf("faimtest: OFT: DirectIM: request from %s (%s)\n", userinfo->sn, args->info.directim->ip);
-      
-      newconn = aim_directim_connect(sess, command->conn, args->info.directim);
-
-      if ( (!newconn) || (newconn->fd == -1) ) {
-       dprintf("faimtest: icbm: imimage: could not connect\n");
-
-       if (newconn)
-         aim_conn_kill(sess, &newconn);
-
-       break;
-      }
-
-      aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMINCOMING, faimtest_directim_incoming, 0);
-      aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMDISCONNECT, faimtest_directim_disconnect, 0);
-      aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMTYPING, faimtest_directim_typing, 0);
-
-      dvprintf("faimtest: OFT: DirectIM: connected to %s\n", userinfo->sn);
-
-      aim_send_im_direct(sess, newconn, "goodday");
-
-      break;
-    }
-    case AIM_CAPS_BUDDYICON: {
-
-      dvprintf("faimtest: Buddy Icon from %s, length = %u\n", userinfo->sn, args->info.icon.length);
-      break;
-    }
-    default:
-      dvprintf("faimtest: icbm: unknown reqclass (%d)\n", args->reqclass);
-    } /* switch */
-  } else
-    dvprintf("faimtest does not support channels > 2 (chan = %02x)\n", channel);
-
-  dprintf("faimtest: icbm: done with ICBM handling\n");
-
-  return 1;
-}
+       clienttype = aim_fingerprintclient(args->fingerprint, args->finlen);
 
-int faimtest_directim_initiate(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{
-  va_list ap;
-  struct aim_directim_priv *priv;
-  struct aim_conn_t *newconn, *listenerconn;
+       dvprintf("faimtest: icbm: sn = \"%s\"\n", userinfo->sn);
+       dvprintf("faimtest: icbm: probable client type: %d\n", clienttype);
+       dvprintf("faimtest: icbm: warnlevel = 0x%04x\n", userinfo->warnlevel);
+       dvprintf("faimtest: icbm: flags = 0x%04x = ", userinfo->flags);
+       printuserflags(userinfo->flags);
+       dinlineprintf("\n");
 
-  va_start(ap, command);
-  newconn = va_arg(ap, struct aim_conn_t *);
-  listenerconn = va_arg(ap, struct aim_conn_t *);
-  va_end(ap);
+       dvprintf("faimtest: icbm: membersince = %lu\n", userinfo->membersince);
+       dvprintf("faimtest: icbm: onlinesince = %lu\n", userinfo->onlinesince);
+       dvprintf("faimtest: icbm: idletime = 0x%04x\n", userinfo->idletime);
+       dvprintf("faimtest: icbm: capabilities = 0x%04x\n", userinfo->capabilities);
+
+       dprintf("faimtest: icbm: icbmflags = ");
+       if (args->icbmflags & AIM_IMFLAGS_AWAY)
+               dinlineprintf("away ");
+       if (args->icbmflags & AIM_IMFLAGS_ACK)
+               dinlineprintf("ackrequest ");
+       if (args->icbmflags & AIM_IMFLAGS_BUDDYREQ)
+               dinlineprintf("buddyreq ");
+       if (args->icbmflags & AIM_IMFLAGS_HASICON)
+               dinlineprintf("hasicon ");
+       dinlineprintf("\n");
 
-  aim_conn_close(listenerconn);
-  aim_conn_kill(sess, &listenerconn);
+       dvprintf("faimtest: icbm: encoding flags = {%04x, %04x}\n", args->flag1, args->flag2);
 
-  priv = (struct aim_directim_priv *)newconn->priv;
+       /*
+        * Quickly convert it to eight bit format, replacing non-ASCII UNICODE 
+        * characters with their equivelent HTML entity.
+        */
+       if (args->icbmflags & AIM_IMFLAGS_UNICODE) {
+               int i;
 
-  dvprintf("faimtest: OFT: DirectIM: intitiate success to %s\n", priv->ip);
-  
-  aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMINCOMING, faimtest_directim_incoming, 0);
-  aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMDISCONNECT, faimtest_directim_disconnect, 0);
-  aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMTYPING, faimtest_directim_typing, 0);
+               for (i = 0; i < args->msglen; i += 2) {
+                       fu16_t uni;
 
-  aim_send_im_direct(sess, newconn, "goodday");
+                       uni = ((args->msg[i] & 0xff) << 8) | (args->msg[i+1] & 0xff);
 
-  dvprintf("faimtest: OFT: DirectIM: connected to %s\n", priv->sn);
+                       if ((uni < 128) || ((uni >= 160) && (uni <= 255))) { /* ISO 8859-1 */
 
-  return 1;
-}
+                               snprintf(realmsg+strlen(realmsg), sizeof(realmsg)-strlen(realmsg), "%c", uni);
 
-int faimtest_directim_connect(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{
-  va_list ap;
-  struct aim_directim_priv *priv;
-  
-  va_start(ap, command);
-  priv = va_arg(ap, struct aim_directim_priv *);
+                       } else { /* something else, do UNICODE entity */
 
-  va_end(ap);
-  
-  dprintf("faimtest: directim_connect\n");
+                               snprintf(realmsg+strlen(realmsg), sizeof(realmsg)-strlen(realmsg), "&#%04x;", uni);
 
-  return 1;
-}
-
-int faimtest_directim_incoming(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{
-  va_list ap;
-  char *msg = NULL;
-  struct aim_conn_t *conn;
-  struct aim_directim_priv *priv;
-
-  va_start(ap, command);
-  conn = va_arg(ap, struct aim_conn_t *);
-  msg = va_arg(ap, char *);
-  va_end(ap);
-
-  if(!(priv = conn->priv)) {
-    dvprintf("faimtest: directim: no private struct on conn with fd %d\n", conn->fd);
-    return -1;
-  }
-
-  dvprintf("faimtest: Directim from %s: %s\n", priv->sn, msg);
-  if (!strncmp(msg, "sendmsg", 7)) {
-    int i;
-    i = atoi(msg+8);
-    if (i < 10000) {
-      char *newbuf;
-      int z;
-      
-      newbuf = malloc(i+1);
-      for (z = 0; z < i; z++) {
-       newbuf[z] = (z % 10)+0x30;
-      }
-      newbuf[i] = '\0';
-      aim_send_im_direct(sess, conn, newbuf);
-      free(newbuf);
-    }
-  } else if (!strncmp(msg, "goodday", 7)) {
-    aim_send_im_direct(sess, conn, "Good day to you, too");
-  } else {
-    char newmsg[1024];
-    snprintf(newmsg, sizeof(newmsg), "unknown (%s)\n", msg);
-    aim_send_im_direct(sess, conn, newmsg);
-  }
-  return 1;
-}
-
-int faimtest_directim_disconnect(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{
-  va_list ap;
-  struct aim_conn_t *conn;
-  char *sn;
+                       }
 
-  va_start(ap, command);
-  conn = va_arg(ap, struct aim_conn_t *);
-  sn = va_arg(ap, char *);
-  va_end(ap);
+               }
 
-  dvprintf("faimtest: directim: disconnected from %s\n", sn);
+       } else {
+
+               /*
+                * For non-UNICODE encodings (ASCII and ISO 8859-1), there is 
+                * no need to do anything special here.  Most 
+                * terminals/whatever will be able to display such characters 
+                * unmodified.
+                *
+                * Beware that PC-ASCII 128 through 159 are _not_ actually 
+                * defined in ASCII or ISO 8859-1, and you should send them as 
+                * UNICODE.  WinAIM will send these characters in a UNICODE 
+                * message, so you need to do so as well.
+                *
+                * You may not think it necessary to handle UNICODE messages.  
+                * You're probably wrong.  For one thing, Microsoft "Smart
+                * Quotes" will be sent by WinAIM as UNICODE (not HTML UNICODE,
+                * but real UNICODE). If you don't parse UNICODE at all, your 
+                * users will get a blank message instead of the message 
+                * containing Smart Quotes.
+                *
+                */
+               strncpy(realmsg, args->msg, sizeof(realmsg));
+       }
 
-  aim_conn_kill(sess, &conn);
-  return 1;
-}
+       dvprintf("faimtest: icbm: message: %s\n", realmsg);
 
-int faimtest_directim_typing(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{
-  va_list ap;
-  struct aim_conn_t *conn;
-  struct aim_directim_priv *priv;
-
-  va_start(ap, command);
-  conn = va_arg(ap, struct aim_conn_t *);
-  va_end(ap);
-  
-  if(!(priv = (struct aim_directim_priv *)conn->priv)) {
-    dvprintf("faimtest: no private struct on conn with fd %d!\n", conn->fd);
-    return -1;
-  }
-
-  dvprintf("faimtest: ohmigod! %s has started typing (DirectIM). He's going to send you a message! *squeal*\n", priv->sn);
-  return 1;
-}
+       if (args->icbmflags & AIM_IMFLAGS_HASICON)
+               aim_send_im(sess, conn, userinfo->sn, AIM_IMFLAGS_BUDDYREQ, "You have an icon");
 
-int faimtest_infochange(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{
-  unsigned short change = 0;
-  int perms, type, length, str;
-  char *val;
-  va_list ap;
+       if (realmsg) {
+               int i = 0;
 
-  va_start(ap, command);
-  perms = va_arg(ap, int);
-  type = va_arg(ap, int);
-  length = va_arg(ap, int);
-  val = va_arg(ap, char *);
-  str = va_arg(ap, int);
-  va_end(ap);
+               while (realmsg[i] == '<') {
+                       if (realmsg[i] == '<') {
+                               while (realmsg[i] != '>')
+                                       i++;
+                               i++;
+                       }
+               }
+               tmpstr = realmsg+i;
 
-  if (aimutil_get16(command->data+2) == 0x0005)
-    change = 1;
+               faimtest_handlecmd(sess, conn, userinfo, tmpstr);
 
-  dvprintf("info%s: perms = %d, type = %x, length = %d, val = %s\n", change?" change":"", perms, type, length, str?val:"(not string)");
+       }
 
-  return 1;
+       return 1;
 }
 
-int faimtest_parse_oncoming(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+/*
+ * Channel 2: Rendevous Request
+ */
+static int faimtest_parse_incoming_im_chan2(aim_session_t *sess, aim_conn_t *conn, struct aim_userinfo_s *userinfo, va_list ap)
 {
-  struct aim_userinfo_s *userinfo;
-   
-  va_list ap;
-  va_start(ap, command);
-  userinfo = va_arg(ap, struct aim_userinfo_s *);
-  va_end(ap);
-
-  dvprintf("%ld  %s is now online (flags: %04x = %s%s%s%s%s%s%s%s) (caps = 0x%04x)\n",
-        time(NULL),
-        userinfo->sn, userinfo->flags,
-        (userinfo->flags&AIM_FLAG_UNCONFIRMED)?" UNCONFIRMED":"",
-        (userinfo->flags&AIM_FLAG_ADMINISTRATOR)?" ADMINISTRATOR":"",
-        (userinfo->flags&AIM_FLAG_AOL)?" AOL":"",
-        (userinfo->flags&AIM_FLAG_OSCAR_PAY)?" OSCAR_PAY":"",
-        (userinfo->flags&AIM_FLAG_FREE)?" FREE":"",
-        (userinfo->flags&AIM_FLAG_AWAY)?" AWAY":"",
-        (userinfo->flags&AIM_FLAG_UNKNOWN40)?" UNKNOWN40":"",
-        (userinfo->flags&AIM_FLAG_UNKNOWN80)?" UNKNOWN80":"",
-        userinfo->capabilities);
-  return 1;
-}
+       struct aim_incomingim_ch2_args *args;
 
-int faimtest_parse_offgoing(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{
-  struct aim_userinfo_s *userinfo;
-   
-  va_list ap;
-  va_start(ap, command);
-  userinfo = va_arg(ap, struct aim_userinfo_s *);
-  va_end(ap);
-
-  dvprintf("%ld  %s is now offline (flags: %04x = %s%s%s%s%s%s%s%s) (caps = 0x%04x)\n",
-        time(NULL),
-        userinfo->sn, userinfo->flags,
-        (userinfo->flags&AIM_FLAG_UNCONFIRMED)?" UNCONFIRMED":"",
-        (userinfo->flags&AIM_FLAG_ADMINISTRATOR)?" ADMINISTRATOR":"",
-        (userinfo->flags&AIM_FLAG_AOL)?" AOL":"",
-        (userinfo->flags&AIM_FLAG_OSCAR_PAY)?" OSCAR_PAY":"",
-        (userinfo->flags&AIM_FLAG_FREE)?" FREE":"",
-        (userinfo->flags&AIM_FLAG_AWAY)?" AWAY":"",
-        (userinfo->flags&AIM_FLAG_UNKNOWN40)?" UNKNOWN40":"",
-        (userinfo->flags&AIM_FLAG_UNKNOWN80)?" UNKNOWN80":"",
-        userinfo->capabilities);
-  return 1;
-}
+       args = va_arg(ap, struct aim_incomingim_ch2_args *);
+       va_end(ap);
 
-int faimtest_parse_motd(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{
-       static char *codes[] = {
-               "Unknown",
-               "Mandatory upgrade",
-               "Advisory upgrade",
-               "System bulletin",
-               "Top o' the world!"
-       };
-       static int codeslen = 5;
-       char *msg;
-       unsigned short id;
-       va_list ap;
+       if (args->reqclass == AIM_CAPS_VOICE) {
 
-       va_start(ap, command);
-       id = va_arg(ap, int);
-       msg = va_arg(ap, char *);
-       va_end(ap);
+               dvprintf("faimtest: voice invitation: source sn = %s\n", userinfo->sn);
+               dvprintf("faimtest: voice invitation: \twarnlevel = 0x%04x\n", userinfo->warnlevel);
+               dvprintf("faimtest: voice invitation: \tclass = 0x%04x = ", userinfo->flags);
+               printuserflags(userinfo->flags);
+               dinlineprintf("\n");
 
-       dvprintf("faimtest: motd: %s (%d / %s)\n", msg, id, (id < codeslen)?codes[id]:"unknown");
+               dvprintf("faimtest: voice invitation: \tonlinesince = %lu\n", userinfo->onlinesince);
+               dvprintf("faimtest: voice invitation: \tidletime = 0x%04x\n", userinfo->idletime);
 
-       return 1;
-}
+       } else if (args->reqclass == AIM_CAPS_GETFILE) {
+               
+               getfile_requested(sess, conn, userinfo, args);
+               
+       } else if (args->reqclass == AIM_CAPS_SENDFILE) {
 
-int faimtest_parse_genericerr(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{
-       va_list ap;
-       unsigned short reason;
+               dprintf("faimtest: send file!\n");
 
-       va_start(ap, command);
-       reason = va_arg(ap, int);
-       va_end(ap);
+       } else if (args->reqclass == AIM_CAPS_CHAT) {
 
-       dvprintf("faimtest: snac threw error (reason 0x%04x: %s)\n", reason, (reason<msgerrreasonslen)?msgerrreasons[reason]:"unknown");
+               dvprintf("faimtest: chat invitation: source sn = %s\n", userinfo->sn);
+               dvprintf("faimtest: chat invitation: \twarnlevel = 0x%04x\n", userinfo->warnlevel);
+               dvprintf("faimtest: chat invitation: \tclass = 0x%04x = ", userinfo->flags);
+               printuserflags(userinfo->flags);
+               dinlineprintf("\n");
 
-       return 1;
-}
+               /* we dont get membersince on chat invites! */
+               dvprintf("faimtest: chat invitation: \tonlinesince = %lu\n", userinfo->onlinesince);
+               dvprintf("faimtest: chat invitation: \tidletime = 0x%04x\n", userinfo->idletime);
 
-int faimtest_parse_msgerr(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{
-       va_list ap;
-       char *destsn;
-       unsigned short reason;
+               dvprintf("faimtest: chat invitation: message = %s\n", args->info.chat.msg);
+               dvprintf("faimtest: chat invitation: room name = %s\n", args->info.chat.roominfo.name);
+               dvprintf("faimtest: chat invitation: encoding = %s\n", args->info.chat.encoding);
+               dvprintf("faimtest: chat invitation: language = %s\n", args->info.chat.lang);
+               dvprintf("faimtest: chat invitation: exchange = 0x%04x\n", args->info.chat.roominfo.exchange);
+               dvprintf("faimtest: chat invitation: instance = 0x%04x\n", args->info.chat.roominfo.instance);
+               dvprintf("faimtest: chat invitiation: autojoining %s...\n", args->info.chat.roominfo.name);
 
-       va_start(ap, command);
-       reason = va_arg(ap, int);
-       destsn = va_arg(ap, char *);
-       va_end(ap);
+               /* Automatically join room... */
+               aim_chat_join(sess, conn, args->info.chat.roominfo.exchange, args->info.chat.roominfo.name, args->info.chat.roominfo.instance);
 
-       dvprintf("faimtest: message to %s bounced (reason 0x%04x: %s)\n", destsn, reason, (reason<msgerrreasonslen)?msgerrreasons[reason]:"unknown");
+       } else if (args->reqclass == AIM_CAPS_IMIMAGE) {
 
-       return 1;
-}
+               dprintf("faimtest: icbm: rendezvous imimage\n");
 
-int faimtest_parse_locerr(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{
-       va_list ap;
-       char *destsn;
-       unsigned short reason;
+               directim_requested(sess, conn, userinfo, args);
 
-       va_start(ap, command);
-       reason = va_arg(ap, int);
-       destsn = va_arg(ap, char *);
-       va_end(ap);
+       } else if (args->reqclass == AIM_CAPS_BUDDYICON) {
 
-       dvprintf("faimtest: user information for %s unavailable (reason 0x%04x: %s)\n", destsn, reason, (reason<msgerrreasonslen)?msgerrreasons[reason]:"unknown");
+               dvprintf("faimtest: Buddy Icon from %s, length = %u\n", userinfo->sn, args->info.icon.length);
+
+       } else {
+
+               dvprintf("faimtest: icbm: unknown reqclass (%d)\n", args->reqclass);
+       }
 
        return 1;
 }
 
-/* 
- * Handles callbacks for AIM_CB_MISSED_CALL.
- */
-int faimtest_parse_misses(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+static int faimtest_parse_incoming_im(aim_session_t *sess, aim_frame_t *fr, ...)
 {
-       static char *missedreasons[] = {
-               "Invalid (0)",
-               "Message too large",
-               "Rate exceeded",
-               "Evil Sender",
-               "Evil Receiver"
-       };
-       static int missedreasonslen = 5;
-
-       va_list ap;
-       unsigned short chan, nummissed, reason;
+       fu16_t channel;
        struct aim_userinfo_s *userinfo;
+       va_list ap;
+       int ret = 0;
 
-       va_start(ap, command);
-       chan = va_arg(ap, int);
+       va_start(ap, fr);
+       channel = va_arg(ap, fu16_t);
        userinfo = va_arg(ap, struct aim_userinfo_s *);
-       nummissed = va_arg(ap, int);
-       reason = va_arg(ap, int);
-       va_end(ap);
 
-       dvprintf("faimtest: missed %d messages from %s on channel %d (reason %d: %s)\n", nummissed, userinfo->sn, chan, reason, (reason<missedreasonslen)?missedreasons[reason]:"unknown");
+       if (channel == 1)
+               ret = faimtest_parse_incoming_im_chan1(sess, fr->conn, userinfo, ap);
+       else if (channel == 2)
+               ret = faimtest_parse_incoming_im_chan2(sess, fr->conn, userinfo, ap);
+       else
+               dvprintf("unsupported channel 0x%04x\n", channel);
+
+       dvprintf("faimtest: icbm: done with ICBM handling (ret = %d)\n", ret);
 
        return 1;
 }
 
-int faimtest_parse_login(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+#ifdef MID_REWROTE_ALL_THE_CRAP
+static int faimtest_infochange(aim_session_t *sess, aim_frame_t *fr, ...)
 {
-       struct client_info_s info = AIM_CLIENTINFO_KNOWNGOOD;
-       char *key;
+       fu16_t change = 0, perms, type;
+       int length, str;
+       char *val;
        va_list ap;
 
-       va_start(ap, command);
-       key = va_arg(ap, char *);
+       va_start(ap, fr);
+       perms = va_arg(ap, fu16_t);
+       type = va_arg(ap, fu16_t);
+       length = va_arg(ap, int);
+       val = va_arg(ap, char *);
+       str = va_arg(ap, int);
        va_end(ap);
 
-       aim_send_login(sess, command->conn, screenname, password, &info, key);
+       if (aimutil_get16(command->data+2) == 0x0005)
+               change = 1;
+
+       dvprintf("info%s: perms = %d, type = %x, length = %d, val = %s\n", change?" change":"", perms, type, length, str?val:"(not string)");
 
        return 1;
 }
+#endif
 
-int faimtest_chat_join(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+static int faimtest_parse_oncoming(aim_session_t *sess, aim_frame_t *fr, ...)
 {
-       va_list ap;
        struct aim_userinfo_s *userinfo;
-       int count = 0, i = 0;
 
-       va_start(ap, command);
-       count = va_arg(ap, int);
+       va_list ap;
+       va_start(ap, fr);
        userinfo = va_arg(ap, struct aim_userinfo_s *);
        va_end(ap);
 
-       dvprintf("faimtest: chat: %s:  New occupants have joined:\n", (char *)command->conn->priv);
-       while (i < count)
-               dvprintf("faimtest: chat: %s: \t%s\n", (char *)command->conn->priv, userinfo[i++].sn);
-
+       dvprintf("%ld  %s is now online (flags: %04x = %s%s%s%s%s%s%s%s) (caps = 0x%04x)\n",
+                       time(NULL),
+                       userinfo->sn, userinfo->flags,
+                       (userinfo->flags&AIM_FLAG_UNCONFIRMED)?" UNCONFIRMED":"",
+                       (userinfo->flags&AIM_FLAG_ADMINISTRATOR)?" ADMINISTRATOR":"",
+                       (userinfo->flags&AIM_FLAG_AOL)?" AOL":"",
+                       (userinfo->flags&AIM_FLAG_OSCAR_PAY)?" OSCAR_PAY":"",
+                       (userinfo->flags&AIM_FLAG_FREE)?" FREE":"",
+                       (userinfo->flags&AIM_FLAG_AWAY)?" AWAY":"",
+                       (userinfo->flags&AIM_FLAG_UNKNOWN40)?" UNKNOWN40":"",
+                       (userinfo->flags&AIM_FLAG_UNKNOWN80)?" UNKNOWN80":"",
+                       userinfo->capabilities);
        return 1;
 }
 
-int faimtest_chat_leave(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+static int faimtest_parse_offgoing(aim_session_t *sess, aim_frame_t *fr, ...)
 {
-       va_list ap;
        struct aim_userinfo_s *userinfo;
-       int count = 0, i = 0;
-
-       va_start(ap, command);
-       count = va_arg(ap, int);
+       va_list ap;
+       
+       va_start(ap, fr);
        userinfo = va_arg(ap, struct aim_userinfo_s *);
        va_end(ap);
 
-       dvprintf("faimtest: chat: %s:  Some occupants have left:\n", (char *)command->conn->priv);
-
-       for (i = 0; i < count; )
-               dvprintf("faimtest: chat: %s: \t%s\n", (char *)command->conn->priv, userinfo[i++].sn);
+       dvprintf("%ld  %s is now offline (flags: %04x = %s%s%s%s%s%s%s%s) (caps = 0x%04x)\n",
+                        time(NULL),
+                        userinfo->sn, userinfo->flags,
+                        (userinfo->flags&AIM_FLAG_UNCONFIRMED)?" UNCONFIRMED":"",
+                        (userinfo->flags&AIM_FLAG_ADMINISTRATOR)?" ADMINISTRATOR":"",
+                        (userinfo->flags&AIM_FLAG_AOL)?" AOL":"",
+                        (userinfo->flags&AIM_FLAG_OSCAR_PAY)?" OSCAR_PAY":"",
+                        (userinfo->flags&AIM_FLAG_FREE)?" FREE":"",
+                        (userinfo->flags&AIM_FLAG_AWAY)?" AWAY":"",
+                        (userinfo->flags&AIM_FLAG_UNKNOWN40)?" UNKNOWN40":"",
+                        (userinfo->flags&AIM_FLAG_UNKNOWN80)?" UNKNOWN80":"",
+                        userinfo->capabilities);
 
        return 1;
 }
 
-int faimtest_chat_infoupdate(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+static int faimtest_parse_genericerr(aim_session_t *sess, aim_frame_t *fr, ...)
 {
        va_list ap;
-       struct aim_userinfo_s *userinfo;
-       struct aim_chat_roominfo *roominfo;
-       char *roomname;
-       int usercount,i;
-       char *roomdesc;
-       unsigned short unknown_c9, unknown_d2, unknown_d5, maxmsglen, maxvisiblemsglen;
-       unsigned long creationtime;
-
-       va_start(ap, command);
-       roominfo = va_arg(ap, struct aim_chat_roominfo *);
-       roomname = va_arg(ap, char *);
-       usercount= va_arg(ap, int);
-       userinfo = va_arg(ap, struct aim_userinfo_s *);
-       roomdesc = va_arg(ap, char *);
-       unknown_c9 = va_arg(ap, int);
-       creationtime = va_arg(ap, unsigned long);
-       maxmsglen = va_arg(ap, int);
-       unknown_d2 = va_arg(ap, int);
-       unknown_d5 = va_arg(ap, int);
-       maxvisiblemsglen = va_arg(ap, int);
-       va_end(ap);
-
-       dvprintf("faimtest: chat: %s:  info update:\n", (char *)command->conn->priv);
-       dvprintf("faimtest: chat: %s:  \tRoominfo: {%04x, %s, %04x}\n",  (char *)command->conn->priv, roominfo->exchange, roominfo->name, roominfo->instance);
-       dvprintf("faimtest: chat: %s:  \tRoomname: %s\n", (char *)command->conn->priv, roomname);
-       dvprintf("faimtest: chat: %s:  \tRoomdesc: %s\n", (char *)command->conn->priv, roomdesc);
-       dvprintf("faimtest: chat: %s:  \tOccupants: (%d)\n", (char *)command->conn->priv, usercount);
+       fu16_t reason;
 
-       for (i = 0; i < usercount; )
-               dvprintf("faimtest: chat: %s:  \t\t%s\n", (char *)command->conn->priv, userinfo[i++].sn);
+       va_start(ap, fr);
+       reason = va_arg(ap, fu16_t);
+       va_end(ap);
 
-       dvprintf("faimtest: chat: %s:  \tUnknown_c9: 0x%04x\n", (char *)command->conn->priv, unknown_c9);
-       dvprintf("faimtest: chat: %s:  \tCreation time: %lu (time_t)\n", (char *)command->conn->priv, creationtime);
-       dvprintf("faimtest: chat: %s:  \tUnknown_d2: 0x%04x\n", (char *)command->conn->priv, unknown_d2);
-       dvprintf("faimtest: chat: %s:  \tUnknown_d5: 0x%02x\n", (char *)command->conn->priv, unknown_d5);
-       dvprintf("faimtest: chat: %s:  \tMax message length: %d bytes\n", (char *)command->conn->priv, maxmsglen);
-       dvprintf("faimtest: chat: %s:  \tMax visible message length: %d bytes\n", (char *)command->conn->priv, maxvisiblemsglen);
+       dvprintf("faimtest: snac threw error (reason 0x%04x: %s)\n", reason, (reason<msgerrreasonslen)?msgerrreasons[reason]:"unknown");
 
        return 1;
 }
 
-int faimtest_chat_incomingmsg(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+static int faimtest_parse_msgerr(aim_session_t *sess, aim_frame_t *fr, ...)
 {
        va_list ap;
-       struct aim_userinfo_s *userinfo;
-       char *msg;
-       char tmpbuf[1152];
+       char *destsn;
+       fu16_t reason;
 
-       va_start(ap, command);
-       userinfo = va_arg(ap, struct aim_userinfo_s *); 
-       msg = va_arg(ap, char *);
+       va_start(ap, fr);
+       reason = va_arg(ap, fu16_t);
+       destsn = va_arg(ap, char *);
        va_end(ap);
 
-       dvprintf("faimtest: chat: %s: incoming msg from %s: %s\n", (char *)command->conn->priv, userinfo->sn, msg);
-
-       /*
-        * Do an echo for testing purposes.  But not for ourselves ("oops!")
-        */
-       if (strcmp(userinfo->sn, sess->sn) != 0) {
-               sprintf(tmpbuf, "(%s said \"%s\")", userinfo->sn, msg);
-               aim_chat_send_im(sess, command->conn, 0, tmpbuf, strlen(tmpbuf));
-       }
+       dvprintf("faimtest: message to %s bounced (reason 0x%04x: %s)\n", destsn, reason, (reason<msgerrreasonslen)?msgerrreasons[reason]:"unknown");
 
        return 1;
 }
 
-int faimtest_chatnav_info(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{
-  unsigned short type;
-  va_list ap;
-
-  va_start(ap, command);
-  type = va_arg(ap, int);
-
-  switch(type) {
-  case 0x0002: {
-    int maxrooms;
-    struct aim_chat_exchangeinfo *exchanges;
-    int exchangecount,i = 0;
-    
-    maxrooms = va_arg(ap, int);
-    exchangecount = va_arg(ap, int);
-    exchanges = va_arg(ap, struct aim_chat_exchangeinfo *);
-    va_end(ap);
-    
-    dprintf("faimtest: chat info: Chat Rights:\n");
-    dvprintf("faimtest: chat info: \tMax Concurrent Rooms: %d\n", maxrooms);
-    
-    dvprintf("faimtest: chat info: \tExchange List: (%d total)\n", exchangecount);
-    for (i = 0; i < exchangecount; i++) {
-      dvprintf("faimtest: chat info: \t\t%x: %s (%s/%s)\n", 
-              exchanges[i].number,     
-              exchanges[i].name,
-              exchanges[i].charset1,
-              exchanges[i].lang1);
-    }
-    
-  }
-  break;
-  case 0x0008: {
-    char *fqcn, *name, *ck;
-    unsigned short instance, flags, maxmsglen, maxoccupancy, unknown, exchange;
-    unsigned char createperms;
-    unsigned long createtime;
-
-    fqcn = va_arg(ap, char *);
-    instance = va_arg(ap, int);
-    exchange = va_arg(ap, int);
-    flags = va_arg(ap, int);
-    createtime = va_arg(ap, unsigned long);
-    maxmsglen = va_arg(ap, int);
-    maxoccupancy = va_arg(ap, int);
-    createperms = va_arg(ap, int);
-    unknown = va_arg(ap, int);
-    name = va_arg(ap, char *);
-    ck = va_arg(ap, char *);
-    va_end(ap);
-
-    dvprintf("faimtest: received room create reply for %s/0x%04x\n", fqcn, exchange);
-  }
-  break;
-  default:
-    va_end(ap);
-    dvprintf("faimtest: chatnav info: unknown type (%04x)\n", type);
-  }
-  return 1;
-}
-
-int faimtest_parse_connerr(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+static int faimtest_parse_locerr(aim_session_t *sess, aim_frame_t *fr, ...)
 {
        va_list ap;
-       unsigned short code;
-       char *msg = NULL;
+       char *destsn;
+       fu16_t reason;
 
-       va_start(ap, command);
-       code = va_arg(ap, int);
-       msg = va_arg(ap, char *);
+       va_start(ap, fr);
+       reason = va_arg(ap, fu16_t);
+       destsn = va_arg(ap, char *);
        va_end(ap);
 
-       dvprintf("faimtest: connerr: Code 0x%04x: %s\n", code, msg);
-       aim_conn_kill(sess, &command->conn); /* this will break the main loop */
-
-       connected = 0;
+       dvprintf("faimtest: user information for %s unavailable (reason 0x%04x: %s)\n", destsn, reason, (reason<msgerrreasonslen)?msgerrreasons[reason]:"unknown");
 
        return 1;
 }
 
-int faimtest_debugconn_connect(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{      
-       dprintf("faimtest: connecting to an aimdebugd!\n");
+static int faimtest_parse_misses(aim_session_t *sess, aim_frame_t *fr, ...)
+{
+       static char *missedreasons[] = {
+               "Invalid (0)",
+               "Message too large",
+               "Rate exceeded",
+               "Evil Sender",
+               "Evil Receiver"
+       };
+       static int missedreasonslen = 5;
 
-       /* convert the authorizer connection to a BOS connection */
-       command->conn->type = AIM_CONN_TYPE_BOS;
+       va_list ap;
+       fu16_t chan, nummissed, reason;
+       struct aim_userinfo_s *userinfo;
 
-       aim_conn_addhandler(sess, command->conn, AIM_CB_FAM_MSG, AIM_CB_MSG_INCOMING, faimtest_parse_incoming_im, 0);
+       va_start(ap, fr);
+       chan = va_arg(ap, fu16_t);
+       userinfo = va_arg(ap, struct aim_userinfo_s *);
+       nummissed = va_arg(ap, fu16_t);
+       reason = va_arg(ap, fu16_t);
+       va_end(ap);
 
-       /* tell the aimddebugd we're ready */
-       aim_debugconn_sendconnect(sess, command->conn); 
+       dvprintf("faimtest: missed %d messages from %s on channel %d (reason %d: %s)\n", nummissed, userinfo->sn, chan, reason, (reason<missedreasonslen)?missedreasons[reason]:"unknown");
 
-       /* go right into main loop (don't open a BOS connection, etc) */
        return 1;
 }
 
 /*
  * Received in response to an IM sent with the AIM_IMFLAGS_ACK option.
  */
-int faimtest_parse_msgack(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+static int faimtest_parse_msgack(aim_session_t *sess, aim_frame_t *fr, ...)
 {
        va_list ap;
-       unsigned short type;
+       fu16_t type;
        char *sn = NULL;
 
-       va_start(ap, command);
-       type = va_arg(ap, int);
+       va_start(ap, fr);
+       type = va_arg(ap, fu16_t);
        sn = va_arg(ap, char *);
        va_end(ap);
 
@@ -2153,387 +1471,99 @@ int faimtest_parse_msgack(struct aim_session_t *sess, struct command_rx_struct *
        return 1;
 }
 
-int faimtest_getfile_filereq(struct aim_session_t *ses, struct command_rx_struct *command, ...)
+static int faimtest_parse_ratechange(aim_session_t *sess, aim_frame_t *fr, ...)
 {
+       static char *codes[5] = {
+               "invalid",
+               "change",
+               "warning",
+               "limit",
+               "limit cleared"
+       };
        va_list ap;
-       struct aim_conn_t *oftconn;
-       struct aim_fileheader_t *fh;
-       char *cookie;
-
-       va_start(ap, command);
-       oftconn = va_arg(ap, struct aim_conn_t *);
-       fh = va_arg(ap, struct aim_fileheader_t *);
-       cookie = va_arg(ap, char *);
-       va_end(ap);
-
-       dvprintf("faimtest: request for file %s.\n", fh->name);
-
-       return 1;
-}
-
-
-int faimtest_getfile_filesend(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{
-  va_list ap;
-  struct aim_conn_t *oftconn;
-  struct aim_fileheader_t *fh;
-  char *path, *cookie;
-  int pos, bufpos = 0, bufsize = 2048, i;
-  char *buf;
-
-  FILE *file;
-
-  va_start(ap, command);
-  oftconn = va_arg(ap, struct aim_conn_t *);
-  fh = va_arg(ap, struct aim_fileheader_t *);
-  cookie = va_arg(ap, char *);
-  va_end(ap);
-
-  dvprintf("faimtest: sending file %s(%ld).\n", fh->name, fh->size);
-
-  if(!(buf = malloc(2048)))
-     return -1;
-
-  if( (path = (char *)calloc(1, strlen(listingpath) +strlen(fh->name)+2)) == NULL) {
-    dperror("calloc");
-    dprintf("faimtest: error in calloc of path\n");
-    return 0; /* XXX: no idea what winaim expects here =) */
-  }
-  
-  snprintf(path, strlen(listingpath)+strlen(fh->name)+2, "%s/%s", listingpath, fh->name);
-
-
-  if( (file = fopen(path, "r")) == NULL) {
-    dvprintf("faimtest: getfile_send fopen failed for %s. damn.\n", path);
-    return 0;
-  }
-
-  /* 
-   * This is a mess. Remember that faimtest is demonstration code
-   * only and for the sake of the gods, don't use this code in any
-   * of your clients. --mid
-   */
-  for(pos = 0; pos < fh->size; pos++) {
-    bufpos = pos % bufsize;
-
-    if(bufpos == 0 && pos > 0) { /* filled our buffer. spit it across the wire */
-      if ( (i = send(oftconn->fd, buf, bufsize, 0)) != bufsize ) {
-       dperror("faim: getfile_send: write1");
-       dprintf("faim: getfile_send: whoopsy, didn't write it all...\n");
-       free(buf);   
-       return -1;
-      }
-    }
-    if( (buf[bufpos] = fgetc(file)) == EOF) {
-      if(pos != fh->size) {
-       dvprintf("faim: getfile_send: hrm... apparent early EOF at pos 0x%x of 0x%lx\n", pos, fh->size);
-       free(buf);   
-       return -1;
-      }
-    }      
-    dvprintf("%c(0x%02x) ", buf[pos], buf[pos]);
-  }
-
-  if( (i = send(oftconn->fd, buf, bufpos+1, 0)) != (bufpos+1)) {
-    dperror("faim: getfile_send: write2");
-    dprintf("faim: getfile_send cleanup: whoopsy, didn't write it all...\n");
-    free(buf);   
-    return -1;
-  }
-
-  free(buf);
-  free(fh);  
-  return 1;
-}
-
-int faimtest_getfile_complete(struct aim_session_t *sess, struct command_rx_struct *command, ...) 
-{
-  va_list ap;
-  struct aim_conn_t *conn;
-  struct aim_fileheader_t *fh;
-
-  va_start(ap, command);
-  conn = va_arg(ap, struct aim_conn_t *);
-  fh = va_arg(ap, struct aim_fileheader_t *);
-  va_end(ap);
-
-  dvprintf("faimtest: completed file transfer for %s.\n", fh->name);
-
-  aim_conn_close(conn);
-  aim_conn_kill(sess, &conn);
-  return 1;
-}
-
-int faimtest_getfile_disconnect(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{
-  va_list ap;
-  struct aim_conn_t *conn;
-  char *sn;
-
-  va_start(ap, command);
-  conn = va_arg(ap, struct aim_conn_t *);
-  sn = va_arg(ap, char *);
-  va_end(ap);
-
-  aim_conn_kill(sess, &conn);
-
-  dvprintf("faimtest: getfile: disconnected from %s\n", sn);
-  return 1;
-}
-
-int faimtest_getfile_initiate(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{
-  va_list ap;
-  struct aim_conn_t *conn, *listenerconn;
-  struct aim_filetransfer_priv *priv;
-
-  va_start(ap, command);
-  conn = va_arg(ap, struct aim_conn_t *);
-  listenerconn = va_arg(ap, struct aim_conn_t *);
-  va_end(ap);
-
-  aim_conn_close(listenerconn);
-  aim_conn_kill(sess, &listenerconn);
-
-  aim_conn_addhandler(sess, conn, AIM_CB_FAM_OFT, AIM_CB_OFT_GETFILEFILEREQ,  faimtest_getfile_filereq, 0);
-  aim_conn_addhandler(sess, conn, AIM_CB_FAM_OFT, AIM_CB_OFT_GETFILEFILESEND, faimtest_getfile_filesend, 0);
-  aim_conn_addhandler(sess, conn, AIM_CB_FAM_OFT, AIM_CB_OFT_GETFILECOMPLETE, faimtest_getfile_complete, 0);      
-  aim_conn_addhandler(sess, conn, AIM_CB_FAM_OFT, AIM_CB_OFT_GETFILEDISCONNECT, faimtest_getfile_disconnect, 0);      
-  aim_conn_addhandler(sess, conn, AIM_CB_FAM_OFT, AIM_CB_OFT_GETFILELISTING, faimtest_getfile_listing, 0);
-  aim_conn_addhandler(sess, conn, AIM_CB_FAM_OFT, AIM_CB_OFT_GETFILELISTINGREQ, faimtest_getfile_listingreq, 0);
-  aim_conn_addhandler(sess, conn, AIM_CB_FAM_OFT, AIM_CB_OFT_GETFILERECEIVE, faimtest_getfile_receive, 0);
-  aim_conn_addhandler(sess, conn, AIM_CB_FAM_OFT, AIM_CB_OFT_GETFILESTATE4, faimtest_getfile_state4, 0);
-  
-  priv = (struct aim_filetransfer_priv *)conn->priv;
-
-  dvprintf("faimtest: getfile: %s (%s) connected to us on %d\n", priv->sn, priv->ip, conn->fd);
-  return 1;
-}
-
-int faimtest_getfile_listing(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{
-  va_list ap;
-  struct aim_conn_t *conn;
-  char *listing;
-  struct aim_filetransfer_priv *ft;
-  char *filename, *nameend, *sizec;
-  int filesize, namelen;
-
-  va_start(ap, command);
-  conn = va_arg(ap, struct aim_conn_t *);
-  ft = va_arg(ap, struct aim_filetransfer_priv *);
-  listing = va_arg(ap, char *);
-  va_end(ap);
-
-  dvprintf("listing on %d==================\n%s\n===========\n", conn->fd, listing);
-
-  nameend = strstr(listing+0x1a, "\r");
+       fu16_t code, rateclass;
+       fu32_t windowsize, clear, alert, limit, disconnect;
+       fu32_t currentavg, maxavg;
 
-  namelen = nameend - (listing + 0x1a);
+       va_start(ap, fr); 
 
-  filename = malloc(namelen + 1);
-  strncpy(filename, listing+0x1a, namelen);
-  filename[namelen] = 0x00;
-
-  sizec = malloc(8+1);
-  memcpy(sizec, listing + 0x11, 8);
-  sizec[8] = 0x00;
-
-  filesize =  strtol(sizec, (char **)NULL, 10);
-
-  dvprintf("faimtest: requesting %d %s(%d long)\n", namelen, filename, filesize);
-
-  aim_oft_getfile_request(sess, conn, filename, filesize);
-
-  free(filename);
-  free(sizec);
-
-  return 0;
-}
+       /* See code explanations below */
+       code = va_arg(ap, fu16_t);
 
-int faimtest_getfile_listingreq(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{
-  va_list ap;
-  struct aim_conn_t *oftconn;
-  struct aim_fileheader_t *fh;
-  int pos, bufpos = 0, bufsize = 2048, i;
-  char *buf;
-
-  va_start(ap, command);
-  oftconn = va_arg(ap, struct aim_conn_t *);
-  fh = va_arg(ap, struct aim_fileheader_t *);
-  va_end(ap);
-
-  dvprintf("faimtest: sending listing of size %ld\n", fh->size);
-
-  if(!(buf = malloc(2048)))
-    return -1;
-
-  for(pos = 0; pos < fh->size; pos++) {
-    bufpos = pos % bufsize;
-
-    if(bufpos == 0 && pos > 0) { /* filled our buffer. spit it across the wire */
-      if ( (i = send(oftconn->fd, buf, bufsize, 0)) != bufsize ) {
-       dperror("faim: getfile_send: write1");
-       dprintf("faim: getfile_send: whoopsy, didn't write it all...\n");
-       free(buf);   
-       return -1;
-      }
-    }
-    if( (buf[bufpos] = fgetc(listingfile)) == EOF) {
-      if(pos != fh->size) {
-       dvprintf("faim: getfile_send: hrm... apparent early EOF at pos 0x%x of 0x%lx\n", pos, fh->size);
-       free(buf);   
-       return -1;
-      }
-    }      
-  }
-
-  if( (i = send(oftconn->fd, buf, bufpos+1, 0)) != (bufpos+1)) {
-    dperror("faim: getfile_send: write2");
-    dprintf("faim: getfile_send cleanup: whoopsy, didn't write it all...\n");
-    free(buf);   
-    return -1;
-  }
-
-  dprintf("faimtest: sent listing\n");
-  free(buf);
-  return 0;
-}
-
-int faimtest_getfile_receive(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{
-  va_list ap;
-  struct aim_conn_t *conn;
-  struct aim_filetransfer_priv *ft;
-  unsigned char data;
-  int pos;
-
-  va_start(ap, command);
-  conn = va_arg(ap, struct aim_conn_t *);
-  ft = va_arg(ap, struct aim_filetransfer_priv *);
-  va_end(ap);
-
-  dvprintf("faimtest: receiving %ld bytes of file data for %s:\n\t", ft->fh.size, ft->fh.name);
-
-  for(pos = 0; pos < ft->fh.size; pos++) {
-    read(conn->fd, &data, 1);
-    printf("%c(%02x) ", data, data);
-  }
-   
-  printf("\n");
-
-  aim_oft_getfile_end(sess, conn);
+       /*
+        * See comments above aim_parse_ratechange_middle() in aim_rxhandlers.c.
+        */
+       rateclass = va_arg(ap, fu16_t);
 
-  return 0;
-}
+       /*
+        * Not sure what this is exactly.  I think its the temporal 
+        * relation factor (ie, how to make the rest of the numbers
+        * make sense in the real world). 
+        */
+       windowsize = va_arg(ap, fu32_t);
 
-int faimtest_getfile_state4(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{
-  va_list ap;
-  struct aim_conn_t *conn;
+       /* Explained below */
+       clear = va_arg(ap, fu32_t);
+       alert = va_arg(ap, fu32_t);
+       limit = va_arg(ap, fu32_t);
+       disconnect = va_arg(ap, fu32_t);
+       currentavg = va_arg(ap, fu32_t);
+       maxavg = va_arg(ap, fu32_t);
 
-  va_start(ap, command);
-  conn = va_arg(ap, struct aim_conn_t *);
-  va_end(ap);
+       va_end(ap);
 
-  aim_conn_close(conn);
-  aim_conn_kill(sess, &conn);
-  return 0;
-}
 
+       dvprintf("faimtest: rate %s (rate class 0x%04x): curavg = %ld, maxavg = %ld, alert at %ld, clear warning at %ld, limit at %ld, disconnect at %ld (window size = %ld)\n",
+                               (code < 5)?codes[code]:"invalid",
+                               rateclass,
+                               currentavg, maxavg,
+                               alert, clear,
+                               limit, disconnect,
+                               windowsize);
+
+       if (code == AIM_RATE_CODE_CHANGE) {
+               /*
+                * Not real sure when these get sent.
+                */
+               if (currentavg >= clear)
+                       aim_conn_setlatency(fr->conn, 0);
+
+       } else if (code == AIM_RATE_CODE_WARNING) {
+               /*
+                * We start getting WARNINGs the first time we go below the 
+                * 'alert' limit (currentavg < alert) and they stop when 
+                * either we pause long enough for currentavg to go above 
+                * 'clear', or until we flood it bad enough to go below 
+                * 'limit' (and start getting LIMITs instead) or even further 
+                * and go below 'disconnect' and get disconnected completely 
+                * (and won't be able to login right away either).
+                */
+               aim_conn_setlatency(fr->conn, windowsize/4); /* XXX this is bogus! */ 
+
+       } else if (code == AIM_RATE_CODE_LIMIT) {
+               /*
+                * When we hit LIMIT, messages will start getting dropped.
+                */
+               aim_conn_setlatency(fr->conn, windowsize/2); /* XXX this is bogus! */ 
+
+       } else if (code == AIM_RATE_CODE_CLEARLIMIT) {
+               /*
+                * The limit is cleared when curavg goes above 'clear'.
+                */
+               aim_conn_setlatency(fr->conn, 0); 
+       }
 
-int faimtest_parse_ratechange(struct aim_session_t *sess, struct command_rx_struct *command, ...)
-{
-  static char *codes[5] = {"invalid",
-                          "change",
-                          "warning",
-                          "limit",
-                          "limit cleared"};
-  va_list ap;
-  int code;
-  unsigned long rateclass, windowsize, clear, alert, limit, disconnect;
-  unsigned long currentavg, maxavg;
-
-  va_start(ap, command); 
-
-  /* See code explanations below */
-  code = va_arg(ap, int);
-
-  /*
-   * See comments above aim_parse_ratechange_middle() in aim_rxhandlers.c.
-   */
-  rateclass = va_arg(ap, unsigned long);
-
-  /*
-   * Not sure what this is exactly.  I think its the temporal 
-   * relation factor (ie, how to make the rest of the numbers
-   * make sense in the real world). 
-   */
-  windowsize = va_arg(ap, unsigned long);
-
-  /* Explained below */
-  clear = va_arg(ap, unsigned long);
-  alert = va_arg(ap, unsigned long);
-  limit = va_arg(ap, unsigned long);
-  disconnect = va_arg(ap, unsigned long);
-  currentavg = va_arg(ap, unsigned long);
-  maxavg = va_arg(ap, unsigned long);
-
-  va_end(ap);
-
-
-  dvprintf("faimtest: rate %s (rate class 0x%04lx): curavg = %ld, maxavg = %ld, alert at %ld, clear warning at %ld, limit at %ld, disconnect at %ld (window size = %ld)\n",
-        (code < 5)?codes[code]:"invalid",
-        rateclass,
-        currentavg, maxavg,
-        alert, clear,
-        limit, disconnect,
-        windowsize);
-
-  if (code == AIM_RATE_CODE_CHANGE) {
-    /*
-     * Not real sure when these get sent.
-     */
-    if (currentavg >= clear)
-      aim_conn_setlatency(command->conn, 0);
-
-  } else if (code == AIM_RATE_CODE_WARNING) {
-    /*
-     * We start getting WARNINGs the first time we go below the 'alert'
-     * limit (currentavg < alert) and they stop when either we pause
-     * long enough for currentavg to go above 'clear', or until we
-     * flood it bad enough to go below 'limit' (and start getting
-     * LIMITs instead) or even further and go below 'disconnect' and 
-     * get disconnected completely (and won't be able to login right
-     * away either).
-     */
-    aim_conn_setlatency(command->conn, windowsize/4); /* XXX this is bogus! */ 
-
-  } else if (code == AIM_RATE_CODE_LIMIT) {
-    /*
-     * When we hit LIMIT, messages will start getting dropped.
-     */
-    aim_conn_setlatency(command->conn, windowsize/2); /* XXX this is bogus! */ 
-
-  } else if (code == AIM_RATE_CODE_CLEARLIMIT) {
-    /*
-     * The limit is cleared when curavg goes above 'clear'.
-     */
-    aim_conn_setlatency(command->conn, 0); 
-  }
-
-  return 1;
+       return 1;
 }
 
-int faimtest_parse_evilnotify(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+static int faimtest_parse_evilnotify(aim_session_t *sess, aim_frame_t *fr, ...)
 {
        va_list ap;
-       int newevil;
+       fu16_t newevil;
        struct aim_userinfo_s *userinfo;
 
-       va_start(ap, command);
-       newevil = va_arg(ap, int);
+       va_start(ap, fr);
+       newevil = va_arg(ap, fu16_t);
        userinfo = va_arg(ap, struct aim_userinfo_s *);
        va_end(ap);
 
@@ -2550,13 +1580,13 @@ int faimtest_parse_evilnotify(struct aim_session_t *sess, struct command_rx_stru
        return 1;
 }
 
-int faimtest_parse_searchreply(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+static int faimtest_parse_searchreply(aim_session_t *sess, aim_frame_t *fr, ...)
 {
        va_list ap;
        char *address, *SNs;
        int i, num;
 
-       va_start(ap, command);
+       va_start(ap, fr);
        address = va_arg(ap, char *);
        num = va_arg(ap, int);
        SNs = va_arg(ap, char *);
@@ -2571,12 +1601,12 @@ int faimtest_parse_searchreply(struct aim_session_t *sess, struct command_rx_str
        return 1;
 }
 
-int faimtest_parse_searcherror(struct aim_session_t *sess, struct command_rx_struct *command, ...)
+static int faimtest_parse_searcherror(aim_session_t *sess, aim_frame_t *fr, ...)
 {
        va_list ap;
        char *address;
 
-       va_start(ap, command);
+       va_start(ap, fr);
        address = va_arg(ap, char *);
        va_end(ap);
 
@@ -2584,3 +1614,46 @@ int faimtest_parse_searcherror(struct aim_session_t *sess, struct command_rx_str
 
        return 1;
 }
+
+void addcb_bos(aim_session_t *sess, aim_conn_t *bosconn)
+{
+
+       aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNCOMPLETE, faimtest_conncomplete, 0);
+
+       aim_conn_addhandler(sess, bosconn, 0x0009, 0x0003, faimtest_bosrights, 0);
+       aim_conn_addhandler(sess, bosconn, 0x0001, 0x0007, faimtest_rateresp_bos, 0); /* rate info */
+       aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, 0x0018, faimtest_hostversions, 0);
+       aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_SERVERREADY, faimtest_serverready, 0);
+       aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_RATEINFO, NULL, 0);
+       aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_REDIRECT, faimtest_handleredirect, 0);
+       aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_STS, AIM_CB_STS_SETREPORTINTERVAL, faimtest_reportinterval, 0);
+       aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_BUD, AIM_CB_BUD_RIGHTSINFO, faimtest_parse_buddyrights, 0);
+       aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_MOTD, faimtest_parse_motd, 0);
+       aim_conn_addhandler(sess, bosconn, 0x0004, 0x0005, faimtest_icbmparaminfo, 0);
+       aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, faimtest_parse_connerr, 0);
+       aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOC, AIM_CB_LOC_RIGHTSINFO, faimtest_locrights, 0);
+       aim_conn_addhandler(sess, bosconn, 0x0001, 0x001f, faimtest_memrequest, 0);
+       aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_BUD, AIM_CB_BUD_ONCOMING, faimtest_parse_oncoming, 0);
+       aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_BUD, AIM_CB_BUD_OFFGOING, faimtest_parse_offgoing, 0);
+       aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_INCOMING, faimtest_parse_incoming_im, 0);
+       aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOC, AIM_CB_LOC_ERROR, faimtest_parse_locerr, 0);
+       aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_MISSEDCALL, faimtest_parse_misses, 0);
+       aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_RATECHANGE, faimtest_parse_ratechange, 0);
+       aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_EVIL, faimtest_parse_evilnotify, 0);
+       aim_conn_addhandler(sess, bosconn, 0x000a, 0x0001, faimtest_parse_searcherror, 0);
+       aim_conn_addhandler(sess, bosconn, 0x000a, 0x0003, faimtest_parse_searchreply, 0);
+       aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_ERROR, faimtest_parse_msgerr, 0);
+       aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOC, AIM_CB_LOC_USERINFO, faimtest_parse_userinfo, 0);
+       aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_ACK, faimtest_parse_msgack, 0);
+
+       aim_conn_addhandler(sess, bosconn, 0x0001, 0x0001, faimtest_parse_genericerr, 0);
+       aim_conn_addhandler(sess, bosconn, 0x0003, 0x0001, faimtest_parse_genericerr, 0);
+       aim_conn_addhandler(sess, bosconn, 0x0009, 0x0001, faimtest_parse_genericerr, 0);
+       
+#ifdef MID_REWROTE_ALL_THE_CRAP
+       aim_conn_addhandler(sess, bosconn, 0xffff, 0xffff, faimtest_parse_unknown, 0);
+#endif
+
+       return;
+}
+
This page took 0.158677 seconds and 4 git commands to generate.