libfaim/aim_txqueue.c

changeset 1081
0fb24c9d4c7d
parent 960
c4012584334f
child 1184
e475cddf904d
--- a/libfaim/aim_txqueue.c	Fri Nov 10 05:54:04 2000 +0000
+++ b/libfaim/aim_txqueue.c	Fri Nov 10 22:49:02 2000 +0000
@@ -151,6 +151,19 @@
   return 0;
 }
 
+faim_internal int aim_tx_enqueue(struct aim_session_t *sess, struct command_tx_struct *command)
+{
+  /*
+   * If we want to send a connection thats inprogress, we have to force
+   * them to use the queue based version. Otherwise, use whatever they
+   * want.
+   */
+  if (command && command->conn && (command->conn->status & AIM_CONN_STATUS_INPROGRESS)) {
+    return aim_tx_enqueue__queuebased(sess, command);
+  }
+  return (*sess->tx_enqueue)(sess, command);
+}
+
 /* 
  *  aim_get_next_txseqnum()
  *
@@ -347,6 +360,9 @@
     /* only process if its unlocked and unsent */
     if (!cur->lock && !cur->sent) {
 
+      if (cur->conn && (cur->conn->status & AIM_CONN_STATUS_INPROGRESS))
+	continue;
+
       /*
        * And now for the meager attempt to force transmit
        * latency and avoid missed messages.

mercurial