]> andersk Git - libfaim.git/commitdiff
Added stubs for those capability TLVs in userinfo.
authormid <mid>
Wed, 29 Dec 1999 10:08:28 +0000 (10:08 +0000)
committermid <mid>
Wed, 29 Dec 1999 10:08:28 +0000 (10:08 +0000)
CHANGES
aim_info.c

diff --git a/CHANGES b/CHANGES
index 20dc779f93e0535c5fab85ac3ca912d90387a9ed..2f79562f84ae40343aea26a85b3974f149fd1108 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,10 @@
 
 No release numbers
 ------------------
+ - Wed Dec 29 10:06:35 UTC 1999
+   - Fixed small bug in IM parser
+   - Added stubs for the capability TLVs in userinfo.
+
  - Wed Dec 29 09:14:45 UTC 1999
    - Added a capability block to aim_bos_setprofile.  Can now get chat invites again.
    - Extended ICBM parser to support channel 2 messages (chat invites)
index 6f8b9cd29935a7bb47b0d153d31dd2230c7270fd..b0c9b7463b261c3dc112fa2f228a176ba20768cc 100644 (file)
@@ -152,6 +152,31 @@ int aim_extractuserinfo(u_char *buf, struct aim_userinfo_s *outinfo)
        case 0x0004:
          outinfo->idletime = aimutil_get16(&buf[i+4]);
          break;
+
+         /*
+          * Type = 0x000d
+          *
+          * Capability information.  Not real sure of
+          * actual decoding.  See comment on aim_bos_setprofile()
+          * in aim_misc.c about the capability block, its the same.
+          *
+          * Ignore.
+          *
+          */
+       case 0x000d:
+         break;
+
+         /*
+          * Type = 0x000e
+          *
+          * Unknown.  Always of zero length, and always only
+          * on AOL users.
+          *
+          * Ignore.
+          *
+          */
+       case 0x000e:
+         break;
          
          /*
           * Type = 0x000f: Session Length. (AIM)
This page took 0.288897 seconds and 5 git commands to generate.