Mercurial > pidgin
comparison libfaim/aim_txqueue.c @ 270:cfa39d39dec6
[gaim-migrate @ 280]
Fixed the 100% bug, but in doing so, broke permit/deny lists, so that got
commented out (yet again). Gaim/Faim is now usable.
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Fri, 26 May 2000 23:10:21 +0000 |
parents | 6ced2f1c8b24 |
children | 501e09c51cbc |
comparison
equal
deleted
inserted
replaced
269:46b6b894bc48 | 270:cfa39d39dec6 |
---|---|
1 /* | 1 /* |
2 * aim_txqueue.c | 2 * aim_txqueue.c |
3 * | 3 * |
4 * Herein lies all the mangement routines for the transmit (Tx) queue. | 4 * Herein lies all the mangement routines for the transmit (Tx) queue. |
5 * | |
6 * Changes by EWarmenhoven Fri May 26 22:52:46 UTC 2000: | |
7 * - added aim_tx_flushqueue() to the end of aim_tx_enqueue() so that I don't | |
8 * have to worry about it any more. mid tells me that doing so will solve the | |
9 * 100% bug. Thanks mid! | |
5 * | 10 * |
6 */ | 11 */ |
7 | 12 |
8 #include <aim.h> | 13 #include <aim.h> |
9 | 14 |
84 #if debug == 2 | 89 #if debug == 2 |
85 faimdprintf(2, "calling aim_tx_printqueue()\n"); | 90 faimdprintf(2, "calling aim_tx_printqueue()\n"); |
86 aim_tx_printqueue(sess); | 91 aim_tx_printqueue(sess); |
87 faimdprintf(2, "back from aim_tx_printqueue()\n"); | 92 faimdprintf(2, "back from aim_tx_printqueue()\n"); |
88 #endif | 93 #endif |
94 | |
95 /* mid tells me this should solve a lot of my problems */ | |
96 aim_tx_flushqueue(sess); | |
89 | 97 |
90 return 0; | 98 return 0; |
91 } | 99 } |
92 | 100 |
93 /* | 101 /* |