# HG changeset patch # User Mark Doliner # Date 1252270794 0 # Node ID 26ce61fc95563fbac4d95b97da4520e60d411b69 # Parent 60ab4bdea3c394f86443bcdb5dfde25c95497e18 These should actually be 0x03, I think. I think it's a bitmask where the value 0x01 means "I'm a recent client" and the value 0x02 means "I don't want multiple instances" From http://dev.aol.com/aim/oscar/#FLAP__MULTICONN_FLAGS diff -r 60ab4bdea3c3 -r 26ce61fc9556 libpurple/protocols/oscar/family_auth.c --- a/libpurple/protocols/oscar/family_auth.c Sun Sep 06 01:46:42 2009 +0000 +++ b/libpurple/protocols/oscar/family_auth.c Sun Sep 06 20:59:54 2009 +0000 @@ -277,7 +277,7 @@ * If set, old-fashioned buddy lists will not work. You will need * to use SSI. */ - aim_tlvlist_add_8(&tlvlist, 0x004a, (allow_multiple_logins ? 0x01 : 0x02)); + aim_tlvlist_add_8(&tlvlist, 0x004a, (allow_multiple_logins ? 0x01 : 0x03)); aim_tlvlist_write(&frame->data, &tlvlist);