comparison src/protocols/oscar/conn.c @ 7283:b8fcbff88438

[gaim-migrate @ 7863] I renamed struct oscar_data to typdef OscarData, which makes this a freaking huge change to oscar.c I think I added another progress meter step, giving oscar a total of 8. And a patch from Siberion (siberion): Moving the mouse cursor over an ICQ buddy whose IP is visible will show negative numbers in the IP for any parts that exceed 127. Example: 12.-37.-16.X With the path applied, this shows as: 12.219.240.X committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 16 Oct 2003 20:57:59 +0000
parents ad243bc63184
children a50eea7628cb
comparison
equal deleted inserted replaced
7282:ad243bc63184 7283:b8fcbff88438
1052 if (!(fr = aim_tx_new(sess, conn, AIM_FRAMETYPE_FLAP, 0x05, 0))) 1052 if (!(fr = aim_tx_new(sess, conn, AIM_FRAMETYPE_FLAP, 0x05, 0)))
1053 return -ENOMEM; 1053 return -ENOMEM;
1054 1054
1055 aim_tx_enqueue(sess, fr); 1055 aim_tx_enqueue(sess, fr);
1056 1056
1057 /* clean out SNACs over 60sec old */
1058 aim_cleansnacs(sess, 60);
1059
1057 return 0; 1060 return 0;
1058 } 1061 }